When ever i write the prgrm including “0 Return 0;”,
It always show me an error.
Return error while executing the prpgram
Hello @Legendankit,
It would be helpful in resolving your doubt if you would share your code with me.
BTW “0 Return 0;” is syntactically wrong statement which might cause compile time error.
Reason:
- C++ is a case sensitive language i.e. “A” and “a” are two different variable.
Hence. “Return” is a wrong keyword. It should be “return” - It is “return 0;” instead of “0 return 0;”
Hope, this would help.
Give a like if you are satisfied.
I hope I’ve cleared your doubt. I ask you to please rate your experience here
Your feedback is very important. It helps us improve our platform and hence provide you
the learning experience you deserve.
On the off chance, you still have some questions or not find the answers satisfactory, you may reopen
the doubt.