S
subramanian100in
Suppose the return type of main is void.
void main(void)
{
...
return;
}
Is the compiler supposed to generate warning or error according to
Standard C.
I use return type as int only. But for knowledge sake I am asking this
question.
void main(void)
{
...
return;
}
Is the compiler supposed to generate warning or error according to
Standard C.
I use return type as int only. But for knowledge sake I am asking this
question.