Advertisement
Guest User

Untitled

a guest
Aug 16th, 2017
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.31 KB | None | 0 0
  1. danny@huuep:~$ cat danny.cpp
  2. #include
  3. int main()
  4. {
  5. printf("Hola mundo");
  6. printf("\n");
  7. return 0;
  8. }
  9. danny@huuep:~$ g++ danny.cpp -o danny
  10. danny.cpp:1:9: error: #include expects "FILENAME" or <FILENAME>
  11. danny.cpp: In function ‘int main()’:
  12. danny.cpp:4: error: ‘printf’ was not declared in this scope
  13. danny@huuep:~$
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement