Guest User

Untitled

a guest
Dec 13th, 2018
101
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1. #include <iostream>
  2.  
  3. int main ()
  4. {
  5. std::cout << "Hello world!"<<std::endl;
  6. std::cout << "Goodbye world!"<<std::endl;
  7. return 0;
  8. }
  9.  
  10. g++ -g -pg main.cpp -o a.out
  11. ./a.out
  12.  
  13. gprof: can't open: gmon.out (No such file or directory)
  14.  
  15. ls -la /usr/bin/g++ /usr/bin/clang++
Add Comment
Please, Sign In to add comment