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 adt in c programming?
Describe the steps to insert data into a singly linked list.
Can static variables be declared in a header file?
What does a pointer variable always consist of?
What is context in c?
What are the advantages and disadvantages of pointers?
Explain how can you tell whether a program was compiled using c versus c++?
Can we change the value of constant variable in c?
What is the benefit of using const for declaring constants?
Explain the use of bit fieild.
State the difference between x3 and x[3].
Why should I prototype a function?
What is the difference between exit() and _exit() function?
count = 0; for (i = 1;i < = 10; i++);count = count + i; Value of count after execution of the above statements will be a) 0 b) 11 c) 55 d) array
By using C language input a date into it and if it is right?