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 is the use of structure padding in c?
Which is the memory area not included in C program? give the reason
What is c language in simple words?
What is a memory leak? How to avoid it?
Is there a way to compare two structure variables?
What is the role of this pointer?
Which is better oop or procedural?
Why isn't any of this standardized in c? Any real program has to do some of these things.
What language is c written?
Is fortran faster than c?
What is difference between stdio h and conio h?
When is a “switch” statement preferable over an “if” statement?
What is the meaning of && in c?
Write a program to generate random numbers in c?
What is the condition that is applied with ?: Operator?