Can a program have multiple main() functions?
Answer / nashiinformaticssolutions
No, only one main() function is allowed.
| Is This Answer Correct ? | 0 Yes | 0 No |
What does char * * argv mean in c?
Why do we write return 0 in c?
What are the different pointer models in c?
Do you have any idea about the use of "auto" keyword?
What is the ANSI C Standard?
write a program to print data of 5 five students with structures?
f(x,y,z) { y = y+1; z = z+x; } main() { int a,b; a = 2 b = 2; f(a+b,a,a); print a; } what is the value of 'a' printed
WHOT IS CHAR?
Where is volatile variable stored?
What is function in c with example?
How are strings stored in c?
What's the total generic pointer type?