#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
What is struct node in c?
using only #include
Does c have circular shift operators?
why return type of main is not necessary in linux
What is main () in c language?
Stimulate calculator using Switch-case-default statement for two numbers
Explain how do you use a pointer to a function?
What is the purpose of scanf() and printf() functions?
What is meant by initialization and how we initialize a variable?
Write a program to swap two numbers without using a temporary variable?
Is r written in c?
How can I make it pause before closing the program output window?
When do you not use the keyword 'return' when defining a function a) Always b) Never c) When the function returns void d) dfd
What is an example of structure?
What is a list in c?