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 difference between abs() and fabs() functions?
Explain bit masking in c?
What are the difference between a free-standing and a hosted environment?
which is conditional construct a) if statement b) switch statement c) while/for d) goto
What is void c?
What are void pointers in c?
What is dynamic dispatch in c++?
Write a program to identify if a given binary tree is balanced or not.
Why c is called top down?
Explain what are multidimensional arrays?
Explain how do you list files in a directory?
Why is sizeof () an operator and not a function?
how we can make 3d venturing graphics on outer interface
List at least 10 sorting methods indicating their average case complexity, worst case complexity and best case complexity.
How many bytes are occupied by near, far and huge pointers (dos)?