What is meaning of "Void main" in C Language.

Answers were Sorted based on User's Feedback



What is meaning of "Void main" in C Language...

Answer / kiruthika

viod is a return type which does not return any value after
execution.

Is This Answer Correct ?    1 Yes 2 No

What is meaning of "Void main" in C Language...

Answer / pravin kumar

void main is main functio in c language where :-
= void means no return of any value.
= main is the function from which a program starts its
execution.whithout main(),program can compile but not run.

both the function are used to execute the program.

Is This Answer Correct ?    0 Yes 1 No

What is meaning of "Void main" in C Language...

Answer / ashturkar sameer

void main means does not return valu at exicution time
mens return (0)

Is This Answer Correct ?    27 Yes 31 No

What is meaning of "Void main" in C Language...

Answer / sameer ashturkar

void means simply it's return zero(0)

Is This Answer Correct ?    23 Yes 30 No

Post New Answer

More C Interview Questions

how to print 2-D array using a single for loop?

2 Answers   Mind Tree, TCS, Value Labs,


What is variable and explain rules to declare variable in c?

0 Answers  


Is the below things valid & where it will be stored in memory layout ? static const volatile int i; register struct { } ; static register;

2 Answers   Bosch,


What is const keyword in c?

0 Answers  


Explain what is the benefit of using const for declaring constants?

0 Answers  






When should structures be passed by values or by references?

0 Answers   Adobe,


When should volatile modifier be used?

0 Answers  


What is the difference between call by value and call by reference in c?

0 Answers  


Can a file other than a .h file be included with #include?

0 Answers   Aspire, Infogain,


What is extern variable in c with example?

0 Answers  


accept character from keyboard untill the user presses the enter key.If the user enters any character other than upper case(A-Z)alphabets program should stop taking any input

1 Answers  


How can I call fortran?

0 Answers  


Categories