void main()
{
int x=25,y=32;
clrscr();
x=x++ + y++;
y=++x + ++y;
printf("%d%d",x,y);
}
Answer Posted / mounica
57 91
| Is This Answer Correct ? | 1 Yes | 0 No |
Post New Answer View All Answers
Why can’t we compare structures?
What is meant by int main ()?
What is a file descriptor in c?
Do character constants represent numerical values?
How can a process change an environment variable in its caller?
How does selection sort work in c?
What is 02d in c?
What is array of pointers to string?
Differentiate Source Codes from Object Codes
What happens if a header file is included twice?
What is static volatile in c?
Write a program to swap two numbers without using a temporary variable?
How can I determine whether a machines byte order is big-endian or little-endian?
Define circular linked list.
What is structure in c explain with example?