Answer Posted / chirag sathvara
void main() function,it will flow of the program
execution,what are the next step of line to execute.
for example,
void main()
{
int b=0
cout<<b;
int c=0;
cout<<c;
}
/*it will indicate first create object of int type,after it
will genereate next statement.*/
Is This Answer Correct ? | 29 Yes | 10 No |
Post New Answer View All Answers
What is wrong with this declaration?
Why is c called c?
Can we change the value of #define in c?
What is merge sort in c?
Do pointers store the address of value or the actual value of a variable?
What are the ways to a null pointer can use in c programming language?
How will you delete a node in DLL?
Write a program to display all the prime nos from 1 to 1000000, your code should not take time more than a minute to display all the nos.
Explain Basic concepts of C language?
Why does everyone say not to use gets?
What are the similarities between c and c++?
Is c high or low level?
What is a floating point in c?
`write a program to display the recomended action depends on a color of trafic light using nested if statments
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 []);