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
What is the difference between struct and union in C?
How do I convert a string to all upper or lower case?
what is the difference between 123 and 0123 in c?
What is fflush() function?
What is a null pointer assignment error? What are bus errors, memory faults, and core dumps?
Find the second largest element in an array with minimum no of comparisons and give the minimum no of comparisons needed on an array of size N to do the same.
hello freinds next week my interview in reliance,nybody has an idea about it intervew questions..so tell
Write a c program to demonstrate character and string constants?
What is Dynamic memory allocation in C? Name the dynamic allocation functions.
write a c program for swapping two strings using pointer
Are pointers integer?
What is difference between && and & in c?
Explain Function Pointer?
How many parameters should a function have?
Why header file is used in c?