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
write a program to create a sparse matrix using dynamic memory allocation.
What are the types of type specifiers?
how to solve "unable to open stdio.h and conio.h header files in windows 7 by using Dos-box software
Why enum is used in c?
Give a one-line C expression to test whether a number is a power of 2. [No loops allowed - it's a simple test.]
What is scope rule in c?
When I tried to go into a security sites I am denied access and a message appeared saying 'applet not initialize'. How can I rectify this problem.
Explain what are the standard predefined macros?
Discuss the function of conditional operator, size of operator and comma operator with examples.
What is formal argument?
How can I read in an object file and jump to locations in it?
How can I sort more data than will fit in memory?
What is the translation phases used in c language?
What is operator precedence?
What is merge sort in c?