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

output??

Answer Posted / kalai

10,15

Is This Answer Correct ?    1 Yes 22 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What is use of bit field?

882


What is the use of in c?

660


What are identifiers in c?

752


Can a pointer point to null?

688


What is the right type to use for boolean values in c? Is there a standard type?

668






program to convert a integer to string in c language'

2073


What is the difference between array_name and &array_name?

864


What is the usage of the pointer in c?

710


What is meant by realloc()?

778


What do you mean by a sequential access file?

717


Can the size of an array be declared at runtime?

697


Draw a flowchart to produce a printed list of all the students over the age of 20 in a class .The input records contains the name and age of students. Assume a sentinel value of 99 for the age field of the trailer record

4863


What is #include cctype?

668


If one class contains another class as a member, in what order are the two class constructors called a) Constructor for the member class is called first b) Constructor for the member class is called second c) Only one of the constructors is called d) all of the above

716


write a C program:There is a mobile keypad with numbers 0-9 and alphabets on it. Take input 0f 7 keys and then form a word from the alphabets present on the keys.

15202