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
Why can’t we compare structures?
how to write optimum code to divide a 50 digit number with a 25 digit number??
How do we make a global variable accessible across files? Explain the extern keyword?
Explain b+ tree?
C program execution always begins with a) #include b) comment (/*-------*/) c) main() d) declaration instructions
how should functions be apportioned among source files?
write a c program to find the sum of five entered numbers using an array named number
Explain how can I pad a string to a known length?
How can you tell whether a program was compiled using c versus c++?
What is #include stdio h and #include conio h?
What is the use of putchar function?
What are the advantages and disadvantages of a heap?
Write a program of advanced Fibonacci series.
What is the advantage of an array over individual variables?
What are the primitive data types in c?