how does the C compiler interpret the following two statements
p=p+x;
q=q+y;
a.p=p+x;
q=q+y
b.p=p+xq=q+y
c.p=p+xq;
q=q+y
d.p=p+x/q=q+y
Answer Posted / venkat
b.p=p+xq=q+y
| Is This Answer Correct ? | 3 Yes | 21 No |
Post New Answer View All Answers
What are header files in c programming?
What is memory leak in c?
Is c++ based on c?
What does c mean?
Explain why can’t constant values be used to define an array’s initial size?
Why is structure important for a child?
Can a local variable be volatile in c?
Explain how do you determine a file’s attributes?
Differentiate between null and void pointers.
What are conditional operators in C?
What is difference between union and structure in c?
What is meant by high-order and low-order bytes?
Explain how are 16- and 32-bit numbers stored?
What does *p++ do?
Is there any demerits of using pointer?