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


Please Help Members By Posting Answers For Below Questions

What is difference between Structure and Unions?

742


What is null in c?

678


What does void main () mean?

828


Explain the use of 'auto' keyword in c programming?

790


write a program that types this pattern: 12345678987654321 12345678 87654321 1234567 7654321 123456 654321 12345 54321 1234 4321 123 321 12 21 1 1

3482






What is a stream in c programming?

692


When the macros gets expanded?

919


What is main () in c language?

693


Can we increase size of array in c?

620


write a sorting prgm to sort 50 nos and sum them and also remove all the occurrences of 15 and print it?

1785


What is array in c with example?

726


How can I call a function with an argument list built up at run time?

740


What is the easiest sorting method to use?

720


What is a far pointer in c?

694


develop algorithms to add polynomials (i) in one variable

1842