Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...


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 / madhusmita mishra

The main function returns a void value .

Is This Answer Correct ?    279 Yes 93 No

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

Answer / sonali panda

The main function does not return any information to the
operating system.

Is This Answer Correct ?    187 Yes 61 No

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

Answer / piyush mani tiwari

The meaning of void is nothing thats why when the function
cant return any value than at that time we declair it as a void
void main means main does not return any value

Is This Answer Correct ?    133 Yes 34 No

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

Answer / 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

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

Answer / rohit

void mean no return type. and main does not return any value so we use void main .

Is This Answer Correct ?    73 Yes 23 No

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

Answer / mohit giri

void main() is a main function in c language.void means
nothing return any value.this function is used to execute our
program.without main(), program can compile but not run.

Is This Answer Correct ?    40 Yes 14 No

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

Answer / raj

by default main return int to its environment but when we
declare void main it means it will not return any value

Is This Answer Correct ?    36 Yes 16 No

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

Answer / sanjay pal

void main is necessary for every program.from this line
onward the program body starts.
before main there is a word void this means main return
nothing so parentheses() follwing main are also requrid
main is treated as a function in c and c++.

Is This Answer Correct ?    18 Yes 5 No

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

Answer / bharti

As name imlies main() is a function ,where the exection of
a program srart. when we use simply main() that by dafault
return int value and we use void main(),that return
nothing but when we use int main()that retun value
according to our program

Is This Answer Correct ?    14 Yes 4 No

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

Answer / prasanna kumar [cse dept. kln

in c and c++ language,void main()
should be used when the main body of programs executed.
void means-nothing(ie) it should returning the value as zero
or the value which we used in our program and another one is
its returning the value when any function is used in our program

Is This Answer Correct ?    10 Yes 5 No

Post New Answer

More C Interview Questions

What are pointers?

0 Answers   Accenture, Tavant Technologies, Zensar,


How to add two numbers without using semicolon n c????

3 Answers  


What is wrong in this statement? scanf(“%d”,whatnumber);

0 Answers  


write a c program to remove all the duplicate characters in a string and replace with single character? ex:-input- AAABBBCCC output- ABC

2 Answers   HCL,


plz answer..... a program that reads non-negative integer and computes and prints its factorial

2 Answers  


Write one statement equalent to the following two statements x=sqr(a); return(x); Choose from one of the alternatives a.return(sqr(a)); b.printf("sqr(a)"); c.return(a*a*a); d.printf("%d",sqr(a));

6 Answers   TCS,


If 4 digits number is input through the keyboard, Write a program to calculate sum of its 1st & 4th digit.

12 Answers   Google,


how to add two numbers without using arithmetic operators?

4 Answers  


pgm to find number of words starting with capital letters in a file(additional memory usage not allowed)(if a word starting with capital also next letter in word is capital cann't be counted twice)

2 Answers   Subex, Wipro,


how can we use static and extern?and where can we use this?

3 Answers   Excel,


What does struct node * mean?

0 Answers  


Explain Linker and Loader

5 Answers  


Categories