What is meaning of "Void main" in C Language.
Answer Posted / bharti
As name imlies main() is a function ,where the exection of
a program srart. when we use simply main() that by dafault
return int value and we use void main(),that return
nothing but when we use int main()that retun value
according to our program
| Is This Answer Correct ? | 14 Yes | 4 No |
Post New Answer View All Answers
How is a pointer variable declared?
Why should I prototype a function?
How do I read the arrow keys? What about function keys?
What is a pragma?
a single linked list consists of nodes a to z .print the nodes in reverse order from z to a using recursion
Explain 'bit masking'?
Should a function contain a return statement if it does not return a value?
how to capitalise first letter of each word in a given string?
What is c language & why it is used?
What is the usage of the pointer in c?
Mention four important string handling functions in c languages .
What will the preprocessor do for a program?
What is the use of function in c?
What is static memory allocation? Explain
What does %c mean in c?