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
What does != Mean in c?
What are global variables?
What are global variables and explain how do you declare them?
explain what are actual arguments?
Explain function?
What are the main characteristics of c language describe the structure of ac program?
How to establish connection with oracle database software from c language?
What does a function declared as pascal do differently?
What are linked lists in c?
What is operator precedence?
Can you please explain the difference between strcpy() and memcpy() function?
Is main an identifier in c?
What is a void pointer in c?
write a program to print the consecutive repeated character from the given string... input string is : hhhhjkutskkkkkggggj output should be like this: hhhhkkkkkgggg anyone help me...
What are the similarities between c and c++?