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
How to create struct variables?
What header files do I need in order to define the standard library functions I use?
Why we use int main and void main?
Q.1 write a program to create binary tree 1 to 16 numbers? Q.2 write a program to creat a binary search tree for the member that is given by user?
#include
How can I make sure that my program is the only one accessing a file?
Why main is not a keyword in c?
What is #define?
a formula,a series of steps,or well defined set of rules for solving a problem a) algorithem b) program c) erdiagram d) compiler
Why is void main used?
Are enumerations really portable?
The number of bytes of storage occupied by short, int and long are a) 2, 2 and 4 b) 2, 4 and 4 c) 4, 4 and 4 d) none
How can you check to see whether a symbol is defined?
Define C in your own Language.
Where we use clrscr in c?