#include<stdio.h>
int main()
{
int i=2;
int j=++i + ++i + i++;
printf("%d\n",i);
printf("%d\n",j);
}
Answer Posted / kailas.s.patil
i = 2;
first ++i = 3.
second ++i = 4.
third i++ = 5;
now i =5;
then, j = 3 + 4 + 5 = 12
| Is This Answer Correct ? | 4 Yes | 1 No |
Post New Answer View All Answers
What is nested structure in c?
Why doesn't C support function overloading?
how can I convert a string to a number?
What is the meaning of 2d in c?
What are types of functions?
Lists the benefits of c programming language?
What are the storage classes in C?
What is conio h in c?
In a header file whether functions are declared or defined?
What is the size of empty structure in c?
how much salary u want ? why u join in our company? your domain is core sector why u prefer software ?
Write a program which returns the first non repetitive character in the string?
What is d'n in c?
How can I call system when parameters (filenames, etc.) Of the executed command arent known until run time?
process by which one bit patten in to another by bit wise operation is? (a) masking, (b) pruning, (c) biting, (d) chopping,