#include<stdio.h>
int main()
{
int i=2;
int j=++i + ++i + i++;
printf("%d\n",i);
printf("%d\n",j);
}
Answer Posted / lebin
value of i is 5
value of j is 12
| Is This Answer Correct ? | 3 Yes | 2 No |
Post New Answer View All Answers
What is the purpose of sprintf?
What does typeof return in c?
how to count no of words,characters,lines in a paragraph.
How can you invoke another program from within a C program?
What is the correct code to have following output in c using nested for loop?
What is difference between structure and union with example?
The % symbol has a special use in a printf statement. Explain how would you place this character as part of the output on the screen?
how many key words availabel in c a) 28 b) 31 c) 32
Explain the binary height balanced tree?
Is sizeof a keyword in c?
What is printf () in c?
What are the ways to a null pointer can use in c programming language?
What is advantage of pointer in c?
What's the right way to use errno?
What is the function of multilevel pointer in c?