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.

Answer Posted / sangeeta

void means nothing..
and it doesn,t return any value..

Is This Answer Correct ?    1 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What does do in c?

1041


Is int a keyword in c?

978


What is define c?

1075


find the output? void r(int a[],int c, int n) { if(c>n) { a[c]=a[c]+c; r(a,++c,n); r(a,++c,n); } } int main() { int i,a[5]={0}; r(a,0,5); for(i=0;i<5;i++) printf("\n %d",a[i]); getch(); }

2311


write a program that declares an array of 30 elements named "income" in the main functions. then cal and pass the array to a programmer-defined function named "getIncome" within the "getIncome" function, ask the user for annual income of 30 employees. then calculate and print total income on the screen using the following function: "void getIncome ( ai []);

2359


What is meant by gets in c?

1182


How macro execution is faster than function ?

1189


If the size of int data type is two bytes, what is the range of signed int data type?

1021


What are the main characteristics of c language describe the structure of ac program?

1212


What is a macro in c preprocessor?

1102


What is wild pointer in c with example?

1061


What is local and global variable in c?

1198


What is the right type to use for boolean values in c? Is there a standard type?

1011


How many main () function we can have in a project?

1111


Do pointers store the address of value or the actual value of a variable?

1079