What is meaning of "Void main" in C Language.
Answer Posted / sneh pranjal
Main() is the function from which a c program starts its execution.And every function returns some value after its execution.
So it important in most of the C program.If we dont need any return type we declare a function starting with void.
Means void is a return type.void means not returning any thing.
| Is This Answer Correct ? | 4 Yes | 1 No |
Post New Answer View All Answers
Why we use break in c?
How can you increase the size of a statically allocated array?
How do you do dynamic memory allocation in C applications?
What is a null pointer assignment error? What are bus errors, memory faults, and core dumps?
How can I use a preprocessorif expression to ?
Explain the meaning of keyword 'extern' in a function declaration.
When can a far pointer be used?
write a program to generate address labels using structures?
What is the best style for code layout in c?
How to write a code for reverse of string without using string functions?
How can I discover how many arguments a function was actually called with?
write a progrmm in c language take user interface generate table using for loop?
What is a protocol in c?
What is the purpose of sprintf() function?
What are the types of type specifiers?