void main()
{
int x=25,y=32;
clrscr();
x=x++ + y++;
y=++x + ++y;
printf("%d%d",x,y);
}
Answer Posted / prasanna
57 61
| Is This Answer Correct ? | 9 Yes | 12 No |
Post New Answer View All Answers
What are the parts of c program?
What are the 3 types of structures?
How do you define structure?
How can you determine the maximum value that a numeric variable can hold?
How can I find out if there are characters available for reading?
When should volatile modifier be used?
Q.1 write aprogram to stack using linklist o insert 40 items? Q.2 write a program to implement circular queue with help of linklist?
Why array is used in c?
Devise a program that inputs a 3 digit number n and finds out whether the number is prime or not. Find out its factors.
Why is c faster?
What is the benefit of using an enum rather than a #define constant?
What are the 5 data types?
Define Array of pointers.
what will be maximum number of comparisons when number of elements are given?
What is the size of empty structure in c?