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

main() { int i,n=010; int sum=0; for(i=1;i<=n;i++) {s=s+i; } printf("%d",&s); getch(); }

6 Answers  


diff between exptected result and requirement?

0 Answers   HCL,


which operator is known as dummy operator in c?

2 Answers   Wipro,


Explain the use of fflush() function?

0 Answers  


What is #define in c?

0 Answers  






What is the purpose of 'register' keyword in c language?

0 Answers  


int a=20; int b=30; int c=40; printf("%d%d%d"); what will be the output?

5 Answers   CMC,


15.what is the disadvantage of using macros? 16.what is the self-referential structure? 17.can a union be self-referenced? 18.What is a pointer? 19.What is the Lvalue and Rvalue? 20.what is the difference between these initializations? 21.Char a[]=”string”; 22.Char *p=”literal”; 23.Does *p++ increment p, or what it points to?

2 Answers   CTS,


Can a void pointer point to a function?

0 Answers  


a simple c program using 'for' loop to display the output 5 4 3 2 1

2 Answers   Google,


whether itis a structured language?

1 Answers   Microsoft,


Write a program that takes a 5 digit number and calculates 2 power that number and prints it

5 Answers   ABS, Accenture, HCL, Infosys, Infotech, SoftSolve, Software India, TCS, Vertex, Vimukti Technologies,


Categories