Can a program have multiple main() functions?
Answer / nashiinformaticssolutions
No, only one main() function is allowed.
| Is This Answer Correct ? | 0 Yes | 0 No |
Draw a diagram showing how the operating system relates to users, application programs, and the computer hardware ?
What is .obj file in c?
What is the difference between NULL and NUL?
How can I increase the allowable number of simultaneously open files?
What is the right type to use for boolean values in c?
Can a pointer be static?
Can I use base-2 constants (something like 0b101010)? Is there a printf format for binary?
what is diognisis?
what would be the output of the following prog? Justify your answer? main() { unsigned char ch; unsigned char i; ch = -255; printf("%d",ch); i = -1; printf("%d",i); }
Does free set pointer to null?
Define VARIABLE?
What is exit() function?