#include<stdio.h>
int main()
{
int i=2;
int j=++i + ++i + i++;
printf("%d\n",i);
printf("%d\n",j);
}
Answer Posted / barathi
i=2
j=9
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
Why n++ execute faster than n+1 ?
Differentiate abs() function from fabs() function.
what does static variable mean?
What does the characters “r” and “w” mean when writing programs that will make use of files?
What is union and structure?
Is it possible to initialize a variable at the time it was declared?
What is the difference between test design and test case design?
how is the examination pattern?
process by which one bit patten in to another by bit wise operation is? (a) masking, (b) pruning, (c) biting, (d) chopping,
How do I get an accurate error status return from system on ms-dos?
Why c is a procedural language?
Can a local variable be volatile in c?
write a C program:There is a mobile keypad with numbers 0-9 and alphabets on it. Take input 0f 7 keys and then form a word from the alphabets present on the keys.
Why flag is used in c?
C program to find all possible outcomes of a dice?