Guest User

C++-example

a guest
Mar 31st, 2014
152
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.18 KB | None | 0 0
  1. // 1.cpp - first C++ program.
  2.  
  3. #include <iostream>
  4.  
  5. using namespace std;
  6.  
  7. int main(){
  8.     cout << "abc" << endl;
  9.     cout << "My first program for Linux." << endl;
  10.     exit(0);
  11. }
Advertisement
Add Comment
Please, Sign In to add comment