0
What is return 0;
8 Answers
0
returns nothing. like void
0
zero
0
Do the first 3 lessons to learn it by yourself ;)
0
Return 0 means that it doesn't returns any values
0
Return 0 means that it doesn't returns any values
0
its a way to declare a proper/normal termination of your program.. Meaning dont return any value
0
when we make any function of return type I.e int main()
{
return 0;
}
0
it's nothing
you give
return 5; or return 8;
there will be nothing changes