fork download
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. int x;
  5.  
  6. void main()
  7. {
  8. cout<<"How old are you? ";
  9. cin>>x;
  10. cout<<endl;
  11.  
  12. if (x<18)
  13. {
  14. cout<<"You're still young. You are not eligible to vote."
  15. }
  16. else
  17. {
  18. cout<<"You are eligible to vote.";
  19. }
  20. }
Compilation error #stdin compilation error #stdout 0s 0KB
stdin
Standard input is empty
compilation info
prog.cpp:6:11: error: '::main' must return 'int'
 void main()
           ^
prog.cpp: In function 'int main()':
prog.cpp:15:2: error: expected ';' before '}' token
  }
  ^
stdout
Standard output is empty