void main()
{
int x=25,y=32;
clrscr();
x=x++ + y++;
y=++x + ++y;
printf("%d%d",x,y);
}

Answer Posted / surendra singh bisht

x=57
y=91

Is This Answer Correct ?    2 Yes 7 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

How is a null pointer different from a dangling pointer?

555


What is non linear data structure in c?

567


write a program using linked list in which each node consists of following information. Name[30] Branch Rollno Telephone no i) Write the program to add information of students in linked list

2228


Write a code to achieve inter processor communication (mutual exclusion implementation pseudo code)?

685


What are pragmas and what are they good for?

569






What is 02d in c?

634


What is wild pointer in c with example?

571


a c code by using memory allocation for add ,multiply of sprase matrixes

2297


What is the difference between abs() and fabs() functions?

601


write a program in C that prompts the user for today's date,tomorrow's date and display the results.Use structures for today's date,tomorrow's date and an array to hold the days for each month of the year.

4983


Explain how can you avoid including a header more than once?

595


Given only putchar (no sprintf, itoa, etc.) write a routine putlong that prints out an unsigned long in decimal. [ I gave the obvious solution of taking % 10 and / 10, which gives us the decimal value in reverse order. This requires an array since we need to print it out in the correct order. The interviewer wasn't too pleased and asked me to give a solution which didn't need the array ].

636


What does 1f stand for?

606


Design a program which assigns values to the array temperature. The program should then display the array with appropriate column and row headings.

1765


What are c preprocessors?

672