1 2 3 4 5 6 7 8 9 10 11
#include <iostream> #include <conio.h> using namespace std; int main () { cout << "Hello world!!!\n"; getch(); return 0; }
1 2 3 4
Line 18: error: conio.h: No such file or directory In function 'int main()': Line 9: error: 'getch' was not declared in this scope compilation terminated due to -Wfatal-errors.