#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
differentiate built-in functions and user – defined functions.
What is the purpose of clrscr () printf () and getch ()?
how to write a c program to print list of fruits in alpabetical order?
Explain how can I prevent another program from modifying part of a file that I am modifying?
What is pointer & why it is used?
What is the best organizational structure?
What does the && operator do in a program code?
Write a program to swap two numbers without using a temporary variable?
What is a structure in c language. how to initialise a structure in c?
What are the different properties of variable number of arguments?
What is a node in c?
Where are local variables stored in c?
Should I learn data structures in c or python?
What is operator promotion?
swap 2 numbers without using third variable?