What is meaning of "Void main" in C Language.
Answer Posted / sanjay pal
void main is necessary for every program.from this line
onward the program body starts.
before main there is a word void this means main return
nothing so parentheses() follwing main are also requrid
main is treated as a function in c and c++.
| Is This Answer Correct ? | 18 Yes | 5 No |
Post New Answer View All Answers
What is a void * in c?
What is dynamic memory allocation?
Dont ansi function prototypes render lint obsolete?
What is difference between union and structure in c?
What is static volatile in c?
write a program to display all prime numbers
When is the “void” keyword used in a function?
Differentiate between a structure and a union.
When is a “switch” statement preferable over an “if” statement?
What is character set?
What is the difference between array and pointer in c?
how can use subset in c program and give more example
What does static variable mean in c?
What is the size of enum in bytes?
In which header file is the null macro defined?