main()
{
int x=10,y=15;
x=x++;
y=++y;
printf("%d %d\n",x,y);
}
output??
Answer Posted / neha gupta
according to c standard they are undefined expressions.different compilers interpret answer in different way.
Is This Answer Correct ? | 3 Yes | 0 No |
Post New Answer View All Answers
Why is structure important for a child?
Given two strings S1 and S2. Delete from S2 all those characters which occur in S1 also and finally create a clean S2 with the relevant characters deleted.
What is #define used for in c?
Describe the header file and its usage in c programming?
Can include files be nested? How many levels deep can include files be nested?
How to delete a node from linked list w/o using collectons?
Why doesnt the call scanf work?
Apart from dennis ritchie who the other person who contributed in design of c language.
What does the file stdio.h contain?
Why main is used in c?
Why functions are used in c?
Explain function?
Which is an example of a structural homology?
What are file streams?
How can I direct output to the printer?