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 / sundeep
a.p=p+x;
q=q+y
| Is This Answer Correct ? | 55 Yes | 5 No |
Post New Answer View All Answers
When should the register modifier be used? Does it really help?
Why is %d used in c?
How can variables be characterized?
what are the 10 different models of writing an addition program in C language?
What is data structure in c programming?
I have seen function declarations that look like this
What oops means?
What is wrong with this initialization?
What is a function simple definition?
Explain bitwise shift operators?
Why flag is used in c?
Explain what are reserved words?
What are qualifiers and modifiers c?
What is getch () for?
How can I remove the leading spaces from a string?