void main()
{
int x=25,y=32;
clrscr();
x=x++ + y++;
y=++x + ++y;
printf("%d%d",x,y);
}
Answer Posted / pushpendra
if you put the values x=25 and y=32 so both values will be simply added because there will proceed clrscr() command .
so write answer is 57 ,61.
| Is This Answer Correct ? | 11 Yes | 8 No |
Post New Answer View All Answers
Write a program to check armstrong number in c?
Can you apply link and association interchangeably?
void main(){ int a; a=1; while(a-->=1) while(a-->=0); printf("%d",a); }
Program will then find the largest of three numbers using nested if-else statements. User is prompted to enter three numbers. Program will find the largest number and display it on the screen. All three numbers entered by the user are also displayed. If user enters 21, 33, and 5, the output should be as follows: You entered: 21, 33 and 5. The largest number is 33.
which is conditional construct a) if statement b) switch statement c) while/for d) goto
When should you not use a type cast?
Can I use base-2 constants (something like 0b101010)? Is there a printf format for binary?
What are the advantage of c language?
How is pointer initialized in c?
What is difference between union All statement and Union?
How old is c programming language?
pierrot's divisor program using c or c++ code
Why c is called top down?
write a c program to calculate sum of digits till it reduces to a single digit using recursion
What is the purpose of ftell?