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
Answers were Sorted based on User's Feedback
What is the easiest sorting method to use?
Explain why C language is procedural?
Binary tree traversing
can we print any string without using terminator?
What are keywords in c with examples?
What is c variable?
Explain what is page thrashing?
Is fortran still used today?
program to find out date after adding 31 days to a date in the month of febraury also consider the leap year
What are the loops in c?
Tell me what is the purpose of 'register' keyword in c language?
What is the difference between union and anonymous union?