#include<stdio.h>
int main()
{
int i=2;
int j=++i + ++i + i++;
printf("%d\n",i);
printf("%d\n",j);
}

Answer Posted / tamil selvam

i value is 2.
j value is 7.

Is This Answer Correct ?    19 Yes 9 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

write a program to rearrange the array such way that all even elements should come first and next come odd

1756


What is the difference between ‘g’ and “g” in C?

2509


Why can’t we compare structures?

805


A float occupies 4 bytes in memory. How many bits are used to store exponent part? since we can have up to 38 number for exponent so 2 ki power 6 6, 6 bits will be used. If 6 bits are used why do not we have up to 64 numbers in exponent?

1770


Why is structure important for a child?

601






What are the characteristics of arrays in c?

609


What are void pointers in c?

574


What does 3 mean in texting?

608


Given two strings S1 and S2. Delete from S2 all those characters which occur in S1 also and finally create a clean S2 with the relevant characters deleted.

830


How do you list files in a directory?

559


how can f be used for both float and double arguments in printf? Are not they different types?

605


console I/O functions means a) the I/O operations done on disk b) the I/O operations done in all parts c) the input given through keyboard is displayed VDU screen d) none of the above

651


What is d scanf?

584


How do I determine whether a character is numeric, alphabetic, and so on?

620


what is uses of .net

1271