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 do you mean by command line argument?
Write the Program to reverse a string using pointers.
Which is the memory area not included in C program? give the reason
What are the types of macro formats?
List out few of the applications that make use of Multilinked Structures?
Can you please explain the difference between syntax vs logical error?
How do we make a global variable accessible across files? Explain the extern keyword?
What is nested structure in c?
What are directives in c?
I need a help with a program: Write a C program that uses data input in determining the whole of points A and a whole of circles B. Find two points in A so that the line which passes through them, cut through the maximum number of circles.
What are the disadvantages of c language?
Is there a built-in function in C that can be used for sorting data?
Differentiate between #include<...> and #include '...'
can anyone please tell about the nested interrupts?
What is the translation phases used in c language?