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 / santhosh
all answers are wrong because
suppose for example can u give like i=i+1;
it it interprets as i+=1
so here it interprets as p+=x;
q+=;
| Is This Answer Correct ? | 7 Yes | 7 No |
Post New Answer View All Answers
Why we use int main and void main?
What is the purpose of main( ) in c language?
Device an algorithm for weiler-atherton polygon clipping, where the clipping window can be any specified polygon
What is the difference between exit() and _exit() function?
What are header files and what are its uses in C programming?
What does != Mean in c?
What is the concatenation operator?
Give me the code of in-order recursive and non-recursive.
Program to find the sum of digits of a given number until the sum becomes a single digit. (e.g. 12345=>1+2+3+4+5=15=>1+5=6)
What is difference between structure and union with example?
What are inbuilt functions in c?
Some coders debug their programs by placing comment symbols on some codes instead of deleting it. How does this aid in debugging?
How can you convert integers to binary or hexadecimal?
Why header files are used?
#include main() { char s[] = "Bouquets and Brickbats"; printf(" %c, ",*(&s[2])); printf("%s, ",s+5); printf(" %s",s); printf(" %c",*(s+2)); }