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 / preetisahu
answer is a
| Is This Answer Correct ? | 31 Yes | 0 No |
Post New Answer View All Answers
In C language, the variables NAME, name, and Name are all the same. TRUE or FALSE?
Write a simple code fragment that will check if a number is positive or negative.
What is unary operator?
what do u mean by Direct access files? then can u explain about Direct Access Files?
Is flag a keyword in c?
regarding pointers concept
What is calloc malloc realloc in c?
How can I recover the file name given an open stream or file descriptor?
What is the difference between declaring a variable and defining a variable?
When c language was developed?
how to introdu5ce my self in serco
What is structure of c program?
What is switch in c?
If you know then define #pragma?
What is the purpose of the following code? Is there any problem with the code? void send(int count, short *to, short *from) { /* count > 0 assumed */ register n = (count + 7) / 8; switch (count % 8) { case 0: do { *to = *from++; case 7: *to = *from++; case 6: *to = *from++; case 5: *to = *from++; case 4: *to = *from++; case 3: *to = *from++; case 2: *to = *from++; case 1: *to = *from++; } while (--n > 0); } }