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 / bibaswan.guha
Venkat can you please explain why the behaviour is going to
be like this (what you have mentioned) ?
Because the ";" should be signifying the termination for
the first line.
| Is This Answer Correct ? | 9 Yes | 1 No |
Post New Answer View All Answers
Explain how do you list a file’s date and time?
What is sizeof return in c?
What are the disadvantages of external storage class?
How can I sort more data than will fit in memory?
What do you mean by dynamic memory allocation in c? What functions are used?
To print the pattern 1 2 3 4 5 10 17 18 19 6 15 24 25 20 7 14 23 22 21 8 13 12 11 10 9
What are the storage classes in C?
Who invented b language?
What does the file stdio.h contain?
What is dangling pointer in c?
Why doesn't C support function overloading?
Why does this code crash?
What is chain pointer in c?
Why & is used in c?
How does normalization of huge pointer works?