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

output??

Answer Posted / divyansh

output will be 1o 16

Is This Answer Correct ?    12 Yes 1 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What should malloc(0) do? Return a null pointer or a pointer to 0 bytes?

592


about c language

1608


How can you access memory located at a certain address?

670


c language supports bitwise operations, why a) 'c' language is system oriented b) 'c' language is problem oriented c) 'c' language is middle level language d) all the above

619


Explain logical errors? Compare with syntax errors.

633






How can I sort a linked list?

639


What's the right way to use errno?

628


What are run-time errors?

602


What is the role of && operator in a program code?

573


What is new line escape sequence?

814


How important is structure in life?

595


How can I open a file so that other programs can update it at the same time?

665


What is the c language function prototype?

651


How can you pass an array to a function by value?

607


What is a memory leak? How to avoid it?

580