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

output??

Answer Posted / mahendra giri

11 16

Is This Answer Correct ?    133 Yes 33 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Which one to choose from 'initialization lists' or 'assignment', for the use in the constructor?

672


How many parameters should a function have?

761


Which function in C can be used to append a string to another string?

744


how much salary u want ? why u join in our company? your domain is core sector why u prefer software ?

1596


Given below are three different ways to print the character for ASCII code 88. Which is the correct way1) char c = 88; cout << c << " ";2) cout.put(88);3) cout << char(88) << " "; a) 1 b) 2 c) 3 d) constant

767






Explain why c is faster than c++?

676


Write a C program on Centralized OLTP, Decentralized OLTP using locking mechanism, Semaphore using locking mechanism, Shared memory, message queues, channel of communication, sockets and a simple program on Saving bank application program using OLTP in IPC?

2273


What is a pointer value and address in c?

728


How can I implement sets or arrays of bits?

695


What is the use of gets and puts?

694


Why do we use stdio h and conio h?

745


where are auto variables stored? What are the characteristics of an auto variable?

694


What is a c token and types of c tokens?

688


i want to switch my career from quailty assurance engineering to development kindly guide me from which programming language its better for me to start plz refer some courses or certifications too i have an experience of 1.5 yrs in QA field.Kindly guide me

1567


What is difference between union All statement and Union?

735