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
What is use of bit field?
What is the use of in c?
What are identifiers in c?
Can a pointer point to null?
What is the right type to use for boolean values in c? Is there a standard type?
program to convert a integer to string in c language'
What is the difference between array_name and &array_name?
What is the usage of the pointer in c?
What is meant by realloc()?
What do you mean by a sequential access file?
Can the size of an array be declared at runtime?
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
What is #include cctype?
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
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.