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

output??

Answer Posted / rukmanee

output : x=10;
y=16;

Is This Answer Correct ?    20 Yes 7 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Write a code on reverse string and its complexity.

603


What is the difference between volatile and const volatile?

559


How can I convert a number to a string?

604


Why do we use stdio h and conio h?

631


What are different types of variables in c?

566






Do variables need to be initialized?

616


What is null character in c?

684


How is pointer initialized in c?

581


How can a number be converted to a string?

595


Function calling procedures? and their differences? Why should one go for Call by Reference?

629


What are structural members?

566


How can you access memory located at a certain address?

663


What is the value of a[3] if integer a[] = {5,4,3,2,1}?

664


How can I access an I o board directly?

620


What do you mean by c?

583