main()
{
int x=20,y=35;
x = y++ + x++;
y = ++y + ++x;
printf("%d %d\n",x,y);
}
Answer Posted / vandana
55 93
| Is This Answer Correct ? | 1 Yes | 12 No |
Post New Answer View All Answers
What is the right way to use errno?
Why is sprintf unsafe?
What are the properties of union in c?
Explain what will the preprocessor do for a program?
How to delete a node from linked list w/o using collectons?
How can I sort a linked list?
List the variables are used for writing doubly linked list program.
What is union in c?
How can I find out if there are characters available for reading?
If the size of int data type is two bytes, what is the range of signed int data type?
how can use subset in c program and give more example
What is the difference between malloc calloc and realloc in c?
Write a programme using structure that create a record of students. The user allow to add a record and delete a record and also show the records in ascending order.
Can true be a variable name in c?
Explain a pre-processor and its advantages.