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
What is difference between Structure and Unions?
What is null in c?
What does void main () mean?
Explain the use of 'auto' keyword in c programming?
write a program that types this pattern: 12345678987654321 12345678 87654321 1234567 7654321 123456 654321 12345 54321 1234 4321 123 321 12 21 1 1
What is a stream in c programming?
When the macros gets expanded?
What is main () in c language?
Can we increase size of array in c?
write a sorting prgm to sort 50 nos and sum them and also remove all the occurrences of 15 and print it?
What is array in c with example?
How can I call a function with an argument list built up at run time?
What is the easiest sorting method to use?
What is a far pointer in c?
develop algorithms to add polynomials (i) in one variable