#include<stdio.h>
int main()
{
int i=2;
int j=++i + ++i + i++;
printf("%d\n",i);
printf("%d\n",j);
}
Answer Posted / gaurav
5
12
| Is This Answer Correct ? | 35 Yes | 14 No |
Post New Answer View All Answers
Is c easy to learn?
What are structural members?
How can I find out how much free space is available on disk?
What is the size of empty structure in c?
What is meant by int main ()?
What is the value of uninitialized variable in c?
Write a program to display all the prime nos from 1 to 1000000, your code should not take time more than a minute to display all the nos.
What is dangling pointer in c?
Write a program to find the biggest number of three numbers in c?
Why is c still so popular?
Write a program to swap two numbers without using third variable?
Explain what are run-time errors?
How can a process change an environment variable in its caller?
explain what is a newline escape sequence?
Is c high or low level?