What is meaning of "Void main" in C Language.
Answer Posted / manoranjan kuiri
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 ? | 1 Yes | 0 No |
Post New Answer View All Answers
How can I trap or ignore keyboard interrupts like control-c?
What are the 5 elements of structure?
Why is c fast?
What is a string?
Explain what is the use of a semicolon (;) at the end of every program statement?
When should the register modifier be used? Does it really help?
What is the advantage of c?
Is it better to bitshift a value than to multiply by 2?
write a program to convert a expression in polish notation(postfix) to inline(normal) something like make 723+* (2+3) x 7 (not sure) just check out its mainly printing expression in postfix form to infix.
Why do we use header files in c?
What is the sizeof () operator?
given post order,in order construct the corresponding binary tree
What's the difference between constant char *p and char * constant p?
Can you please compare array with pointer?
In a byte, what is the maximum decimal number that you can accommodate?