+ 2
I not understand where I can solve this simple code
#include <iostream> using namespace std; void main() { void fun(); cout <<"you are in main"; fun(); } void fun() { cout <<"you are in fun"; }
4 Answers
+ 2
main func can't be void
+ 1
What you want to output ?
+ 1
Thank you smith welder