void main()
{
int x=25,y=32;
clrscr();
x=x++ + y++;
y=++x + ++y;
printf("%d%d",x,y);
}
Answers were Sorted based on User's Feedback
Answer / myfriend_shankar
ans is 59 93
because
void main()
{
1.x=x++ + y++; 25+32 (bcoz of x=x++ so) 26+32=58
2.y=++x + ++y; 59+34=93(after this x=59)
(becoz of x=x++ the last value 59 be the x value)
| Is This Answer Correct ? | 13 Yes | 1 No |
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 |
why we are using semicolon at the end of printh statment
What is macro?
How can I do peek and poke in c?
Explain the use of bit fieild.
change to postfix a/(b+c*d-e)
What is keyword with example?
write a code for large nos multilication (upto 200 digits)
WHICH TYPE OF JOBS WE GET BY WRITING GROUPS .WHEN THE EXAMS CONDUCTED IS THIS EXAMS ARE CONDUCTED EVERY YEAR OR NOT.PLS TELL ME THE ANSWER
a character variable can at a time store a) 1 character b) 8 characters c) 254 characters d) none of the above
what is c
While(1) { } when this loop get terminate is it a infinite loop?
write a program in c language to print your bio-data on the screen by using functions.
6 Answers College School Exams Tests, IBM,