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 a 'null pointer assignment' error? Explain what are bus errors, memory faults, and core dumps?
Can I use base-2 constants (something like 0b101010)? Is there a printf format for binary?
What are local static variables? How can you use them?
Explain how do you override a defined macro?
What is difference between scanf and gets?
Which is better between malloc and calloc?
I just typed in this program, and it is acting strangely. Can you see anything wrong with it?
What is c language used for?
What is the difference between null pointer and wild pointer?
When should volatile modifier be used?
How does selection sort work in c?
Is register a keyword in c?
Are c and c++ the same?
Explain built-in function?
Where can I get an ansi-compatible lint?