[ create a new paste ] login | about

Link: http://codepad.org/gkSXvOPP    [ raw code | output | fork ]

C++, pasted on Feb 17:
1
2
3
4
5
6
7
8
9
10
11
12
13
#include<iostream>  
  
using namespace std; 
  
// main function - 
// where the execution of program begins 
int main() 
{ 
    // prints hello world 
    cout<<"Hello World"; 
      
    return 0; 
} 


Output:
1
Hello World


Create a new paste based on this one


Comments: