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

Answer Posted / chandrasekhar

56 93

Is This Answer Correct ?    7 Yes 4 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What are the features of the c language?

640


Can static variables be declared in a header file?

612


How can I direct output to the printer?

808


What is the difference between malloc() and calloc()?

613


FORMATTED INPUT/OUTPUT functions are a) scanf() and printf() b) gets() and puts() c) getchar() and putchar() d) all the above

617






how to create duplicate link list using C???

2069


Is array a primitive data type in c?

573


List at least 10 sorting methods indicating their average case complexity, worst case complexity and best case complexity.

2299


Do you have any idea how to compare array with pointer in c?

598


What are the storage classes in C?

619


exit () is used to a) exit () terminates the execution of the program itself b) exit () terminates the execution of the loop c) exit () terminates the execution of the block d) none of the above

656


What does c mean before a date?

585


c program to compute AREA under integral

1804


How do you use a 'Local Block'?

714


How do I use void main?

629