main()
{
int x=20,y=35;
x = y++ + x++;
y = ++y + ++x;
printf("%d %d\n",x,y);
}

Answer Posted / valli

x=57
y=94

Is This Answer Correct ?    29 Yes 16 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

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.

4991


How can I use a preprocessorif expression to ?

602


List the different types of c tokens?

629


How can I open files mentioned on the command line, and parse option flags?

596


Which header file is used for clrscr?

583






What are the key features in c programming language?

618


How can I invoke another program (a standalone executable, or an operating system command) from within a c program?

655


code for quick sort?

1623


How do I use strcmp?

644


What is a double c?

592


What math functions are available for integers? For floating point?

626


Explain why can’t constant values be used to define an array’s initial size?

857


How are pointers declared in c?

602


how do you execute a c program in unix.

637


What is the use of define in c?

598