#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
Write a Program to accept different goods with the number, price and date of purchase and display them
Write a Program to find whether the given number or string is palindrome.
What is the difference between fread and fwrite function?
What is an example of structure?
Explain how do you sort filenames in a directory?
What are the two types of structure?
how can use subset in c program and give more example
Is that possible to store 32768 in an int data type variable?
Can one function call another?
What is the use of a static variable in c?
Explain enumerated types.
Is sizeof a keyword in c?
Explain low-order bytes.
What is the sizeof () a pointer?
What should malloc() do?