main()
{
int x=20,y=35;
x = y++ + x++;
y = ++y + ++x;
printf("%d %d\n",x,y);
}
Answer Posted / deepak
57 94
| Is This Answer Correct ? | 3 Yes | 4 No |
Post New Answer View All Answers
Explain function?
Why pointers are used?
What is a null pointer assignment error? What are bus errors, memory faults, and core dumps?
What are the ways to a null pointer can use in c programming language?
When do we get logical errors?
What are the types of type specifiers?
Can two or more operators such as and be combined in a single line of program code?
Tell us two differences between new () and malloc ()?
What is the meaning of 2d in c?
Explain what happens if you free a pointer twice?
program for reversing a selected line word by word when multiple lines are given without using strrev
What is a lookup table in c?
How can I write data files which can be read on other machines with different word size, byte order, or floating point formats?
What is string length in c?
Is c is a low level language?