What is meaning of "Void main" in C Language.
Answer Posted / vikas kumar
Void is a return type of the main function void means not
returning any thing.....and
Main() is the function from which a c program starts its
execution
Means void is a return type...
if we want int,char,float..return type then void main we
even can write
int main()
char main()
float main()
If we dont need any return type we declare a function
starting with void.
And every function returns some value after its execution.
| Is This Answer Correct ? | 111 Yes | 15 No |
Post New Answer View All Answers
Where is volatile variable stored?
c language supports bitwise operations, why a) 'c' language is system oriented b) 'c' language is problem oriented c) 'c' language is middle level language d) all the above
What is indirection? How many levels of pointers can you have?
What does a function declared as pascal do differently?
A text file that contains declarations used by a group of functions,programs,or users a) executable file b) header file c) obj file d) .cfile
write a c program to find the sum of five entered numbers using an array named number
How many levels of pointers can you have?
What is the g value paradox?
What is the meaning of ?
What does malloc () calloc () realloc () free () do?
When do we get logical errors?
What are the 4 types of organizational structures?
What are the advantages of Macro over function?
What are variables c?
What are global variables?