void main()
{
int x=25,y=32;
clrscr();
x=x++ + y++;
y=++x + ++y;
printf("%d%d",x,y);
}
Answer Posted / prasanna
57 61
| Is This Answer Correct ? | 9 Yes | 12 No |
Post New Answer View All Answers
What is the difference between the expression “++a” and “a++”?
What the advantages of using Unions?
i have to apply for the rbi for the post of officers. i need to know abt the entrance questions whether it may be aps or techinical....
What is structure of c program?
What is the size of array float a(10)?
What are disadvantages of C language.
Is r written in c?
Explain argument and its types.
What is spaghetti programming?
#include
What is the use of ?: Operator?
write a program to convert a expression in polish notation(postfix) to inline(normal) something like make 723+* (2+3) x 7 (not sure) just check out its mainly printing expression in postfix form to infix.
while initialization of array why we use a[][2] why not a[2][]...?
Do you know what are the properties of union in c?
What is the use of printf() and scanf() functions?