main()
{
int x=10,y=15;
x=x++;
y=++y;
printf("%d %d\n",x,y);
}
output??
Answer Posted / mannucse
35 39
| Is This Answer Correct ? | 6 Yes | 48 No |
Post New Answer View All Answers
What is the purpose of clrscr () printf () and getch ()?
What is || operator and how does it function in a program?
Does c have circular shift operators?
What is character set?
What is I ++ in c programming?
Which is an example of a structural homology?
Can you apply link and association interchangeably?
How to Throw some light on the splay trees?
How are portions of a program disabled in demo versions?
what is different between auto and local static? why should we use local static?
Tell us two differences between new () and malloc ()?
What is getche() function?
Explain enumerated types in c language?
Can one function call another?
Why c is procedure oriented?