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 the ANSI C Standard?
write a program to copy the string using switch case?
I was asked to write a program in c which when executed displays how many no.of clients are connected to the server.
What language is lisp written in?
What happens if header file is included twice?
Compare array data type to pointer data type
How the c program is executed?
Is array a primitive data type in c?
Is c pass by value or reference?
What do you mean by a local block?
How is a null pointer different from a dangling pointer?
Explain main function in c?
Why do we use & in c?
Write a program, where i have a grid with many cells, how many paths are possible from one point to other desired points.
Explain Function Pointer?