#include<stdio.h>
int main()
{
int i=2;
int j=++i + ++i + i++;
printf("%d\n",i);
printf("%d\n",j);
}
Answer Posted / mayank kumar
i=5
j=11
| Is This Answer Correct ? | 22 Yes | 10 No |
Post New Answer View All Answers
What is context in c?
I need a sort of an approximate strcmp routine?
What does 2n 4c mean?
Where can I get an ansi-compatible lint?
Why do we need a structure?
What is the size of empty structure in c?
What is #line used for?
What are the two types of structure?
about c language
Why should I prototype a function?
What are unions in c?
how to make a scientific calculater ?
When the macros gets expanded?
Do character constants represent numerical values?
#include main() { int *p, *c, i; i = 5; p = (int*) (malloc(sizeof(i))); printf(" %d",*p); *p = 10; printf(" %d %d",i,*p); c = (int*) calloc(2); printf(" %d ",*c); }