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() { intj; while9j<=10) { printf("\n%d",j); j=j+1; } }

4 Answers  


int x=5; printf("%d%d%d",x,x<<2,x>>2);

2 Answers   TANCET,


How do we swap or interchange any 2 numbers without using Temporary variable...Anybody can pls answer it.. Thanks in Advance

8 Answers  


Can we declare variables anywhere in c?

0 Answers  


What is main function in c?

0 Answers  






how does the for loop work actually..suppose for the following program how it ll work plz explain to me for(i=5;i>=0;i--) prinf(i--);

19 Answers   RMSI,


Explain what are global variables and explain how do you declare them?

0 Answers  


What is main return c?

0 Answers  


what will happen if you free a pointer twice after allocating memory dynamically ?

3 Answers   Novell,


multiple of 9 without useing +,* oprator

3 Answers  


Find occurence of a character in a sting.

3 Answers   TCS,


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

0 Answers  


Categories