#include<stdio.h>
int main()
{
int i=2;
int j=++i + ++i + i++;
printf("%d\n",i);
printf("%d\n",j);
}
Answer Posted / gaurav
Please use gcc compiler....u will get answer 1,i.e. 5 and 12
| Is This Answer Correct ? | 10 Yes | 3 No |
Post New Answer View All Answers
Write a code to generate divisors of an integer?
When should I declare a function?
Why do we need a structure?
number of times a digit is present in a number
What is dynamic variable in c?
what is the different bitween abap and abap-hr?
Should I use symbolic names like true and false for boolean constants, or plain 1 and 0?
What are categories used for in c?
What is the difference between new and malloc functions?
What is meant by 'bit masking'?
When c language was developed?
What is const and volatile in c?
What are the types of c language?
Explain what are reserved words?
Explain what are multidimensional arrays?