void main()
{
int x=25,y=32;
clrscr();
x=x++ + y++;
y=++x + ++y;
printf("%d%d",x,y);
}
Answer Posted / mounica
57 91
| Is This Answer Correct ? | 1 Yes | 0 No |
Post New Answer View All Answers
Give basis knowledge of web designing ...
Why array is used in c?
What is the difference between array and structure in c?
Explain the properties of union.
Tell me with an example the self-referential structure?
Can you please explain the difference between syntax vs logical error?
What is floating point constants?
What are keywords c?
What are the rules for the identifier?
Difference between goto, long jmp() and setjmp()?
Why isnt there a numbered, multi-level break statement to break out
What is the return type of sizeof?
What are header files? What are their uses?
Write a program to reverse a string.
What is the use of define in c?