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 |
what do u mean by Direct access files? then can u explain about Direct Access Files?
Find the highest of three numbers and print them using ascending orders?
what is ur strangth & weekness
0 Answers Cognizant, LG Soft, NetEnrich,
can we execute the program with the object file
Write a program to find factorial of a number using recursive function.
What is a 'null pointer assignment' error?
what are bps & baud rates? differentiate these two?
write a c programs to do multiplication of two numbers with out using arithmatic operator ??????????
how we can say java is platform independent, while we require JVM for that particular Operating System?
the 'sizeof' operator reported a larger size than the calculated size for a structure type. What could be the reason?
a=0; while(a<5) printf("%d\n",a++); how many times does the loop occurs? a.infinite b.5 c.4 d.6
What is the use of keyword VOLATILE in C?