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
Is calloc better than malloc?
How can I find the modification date and time of a file?
What is difference between union All statement and Union?
How can you find the exact size of a data type in c?
What is oops c?
if the area was hit by a virus and so the decrease in the population because of death was x/3 and the migration from other places increased a population by 2x then annually it had so many ppl. find our the population in the starting.
What is typedef struct in c?
Where register variables are stored in c?
write a program that types this pattern: 12345678987654321 12345678 87654321 1234567 7654321 123456 654321 12345 54321 1234 4321 123 321 12 21 1 1
What is an endless loop?
How can I check whether a file exists? I want to warn the user if a requested input file is missing.
In c programming write a program that will print 10 multiples of 3 except 15,18,21 using looping
hi friends how r u as soon in satyam my interview is start but i m very confusued ta wat i do plz help me frndz wat can i do plz tell me some question and answers related with "C" which r asked in the interview .
Explain what is the benefit of using #define to declare a constant?
Explain what is a 'null pointer assignment' error? Explain what are bus errors, memory faults, and core dumps?