main()
{
int x=10,y=15;
x=x++;
y=++y;
printf("%d %d\n",x,y);
}
output??
Post New Answer View All Answers
Which one to choose from 'initialization lists' or 'assignment', for the use in the constructor?
How many parameters should a function have?
Which function in C can be used to append a string to another string?
how much salary u want ? why u join in our company? your domain is core sector why u prefer software ?
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
Explain why c is faster than c++?
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?
What is a pointer value and address in c?
How can I implement sets or arrays of bits?
What is the use of gets and puts?
Why do we use stdio h and conio h?
where are auto variables stored? What are the characteristics of an auto variable?
What is a c token and types of c tokens?
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
What is difference between union All statement and Union?