#include<stdio.h>
int main()
{
int i=2;
int j=++i + ++i + i++;
printf("%d\n",i);
printf("%d\n",j);
}
Answer Posted / manjunath.b.a
i=5
j=12
| Is This Answer Correct ? | 1 Yes | 1 No |
Post New Answer View All Answers
What is the mean of function?
List out few of the applications that make use of Multilinked Structures?
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?
What is dynamic memory allocation?
What is nested structure with example?
What does c mean in standard form?
What is return in c programming?
Find MAXIMUM of three distinct integers using a single C statement
write a program to reverse a every alternetive words in a string in a place. EX: Input is "this is the line of text" Output should be "shit is eht line fo text" Please any one tell me code for that.
Tell us the use of fflush() function in c language?
Why calloc is better than malloc?
Write a code to generate a series where the next element is the sum of last k terms.
What are called c variables?
Which of these functions is safer to use : fgets(), gets()? Why?
What is a keyword?