void main()
{
int i=5;
printf("%d",i++ + ++i);
}
Answer Posted / basha
I have compiled this program. The ans is 12
| Is This Answer Correct ? | 45 Yes | 6 No |
Post New Answer View All Answers
Explain what does the characters 'r' and 'w' mean when writing programs that will make use of files?
How many identifiers are there in c?
what is associativity explain what is the precidence for * and & , * and ++ how the folloing declaration work 1) *&p; 2) *p++;
Where static variables are stored in memory in c?
How can I call a function with an argument list built up at run time?
What are the 5 types of inheritance in c ++?
How do c compilers work?
What is the use of a conditional inclusion statement in C?
How do you generate random numbers in C?
How do I convert a string to all upper or lower case?
What does it mean when a pointer is used in an if statement?
Explain how can I prevent another program from modifying part of a file that I am modifying?
Draw a flowchart to produce a printed list of all the students over the age of 20 in a class .The input records contains the name and age of students. Assume a sentinel value of 99 for the age field of the trailer record
What is the use of typedef in c?
Why doesnt long int work?