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
What does do in c?
Is int a keyword in c?
What is define c?
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(); }
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 []);
What is meant by gets in c?
How macro execution is faster than function ?
If the size of int data type is two bytes, what is the range of signed int data type?
What are the main characteristics of c language describe the structure of ac program?
What is a macro in c preprocessor?
What is wild pointer in c with example?
What is local and global variable in c?
What is the right type to use for boolean values in c? Is there a standard type?
How many main () function we can have in a project?
Do pointers store the address of value or the actual value of a variable?