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
difference between object file and executable file
When I set a float variable to, say, 3.1, why is printf printing it as 3.0999999?
What are runtime error?
Can true be a variable name in c?
please give me some tips for the placement in the TCS.
Is fortran faster than c?
What is the difference between array and structure in c?
What is huge pointer in c?
What does the c preprocessor do?
What are the salient features of c languages?
How can I run c program?
How many data structures are there in c?
How do you use a 'Local Block'?
Are local variables initialized to zero by default in c?
What is the best way to comment out a section of code that contains comments?