void main()
{
int i=5;
printf("%d",i++ + ++i);
}

Answer Posted / surenda pal singh chouhan

Output Cannot be predicted exactly.

Explanation:
Side effects are involved in the evaluation of i

Is This Answer Correct ?    13 Yes 15 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What is c variable?

556


What does *p++ do?

590


When do you not use the keyword 'return' when defining a function a) Always b) Never c) When the function returns void d) dfd

646


Why c is called procedure oriented language?

582


What is the difference between int main and void main in c?

595






What are the storage classes in C?

629


What does c mean?

592


cin.ignore(80, _ _);This statement a) ignores all input b) ignores the first 80 characters in the input c) ignores all input till end-of-line d) iteration

640


Define macros.

787


Who developed c language and when?

588


What is a header file?

640


What are the types of type specifiers?

625


What does 4d mean in c?

951


Describe how arrays can be passed to a user defined function

788


Why we write conio h in c?

569