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
How many keywords (reserve words) are in c?
What is a program flowchart?
how to print electricity bill according to following charges first 100 units -1rs per unit for next 200 units-1.50 rs per unit without using conditions
What is the benefit of using const for declaring constants?
Which is better between malloc and calloc?
What is struct node in c?
disply the following menu 1.Disply 2.Copy 3.Append; as per the menu do the file operations 4.Exit
How to write c functions that modify head pointer of a linked list?
Why use int main instead of void main?
What is pre-emptive data structure and explain it with example?
Can you please explain the difference between exit() and _exit() function?
Is c procedural or object oriented?
What does void main return?
What is calloc()?
How can I find the modification date of a file?