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
Answers were Sorted based on User's Feedback
How can I invoke another program or command and trap its output?
Are there any problems with performing mathematical operations on different variable types?
What is huge pointer in c?
What is the function of volatile in c language?
How to write a program to receive an integer & find its octal equivalent by using for loop?
Tell me what are bitwise shift operators?
What is a nested loop?
What ios diff. Between %e & %f?
What is Full Form of C and Why We use C
fn f(x) { if(x<=0) return; else f(x-1)+x; }
The number of measuring units from an arbitarary starting point in a record,area,or control block to some other point a) recording pointer b) offset c) branching d) none
How do I initialize a pointer to a function?