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 size of union in c?
What are the different types of C instructions?
write a program that reads lines(using getline), converts each line to an integer using atoi, and computes the average of all the numbers read. also compute the standard deviation.
What are the properties of union in c?
write a program for the normal snake games find in most of the mobiles.
main() { inta=10,b=20; a>=5?b=100:b=200; printf("%d ",b); }
Given only putchar (no sprintf, itoa, etc.) write a routine putlong that prints out an unsigned long in decimal. [ I gave the obvious solution of taking % 10 and / 10, which gives us the decimal value in reverse order. This requires an array since we need to print it out in the correct order. The interviewer wasn't too pleased and asked me to give a solution which didn't need the array ].
What is an lvalue?
in linking some of os executables are linking name some of them
Explain why c is faster than c++?
What is the right type to use for boolean values in c?
What is volatile variable in c?
What are the main characteristics of c language describe the structure of ac program?
Do you know what are bitwise shift operators in c programming?
Explain b+ tree?