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
write a progrmm in c language take user interface generate table using for loop?
which is conditional construct a) if statement b) switch statement c) while/for d) goto
What is a protocol in c?
What is wild pointer in c with example?
What are data types in c language?
Can an array be an Ivalue?
Explain how does free() know explain how much memory to release?
Explain how can I prevent another program from modifying part of a file that I am modifying?
Why isnt any of this standardized in c?
What is the difference between malloc() and calloc() function in c language?
What is modifier & how many types of modifiers available in c?
Define macros.
A c program to display count values from 0 to 100 and flash each digit for a secong.reset the counter after it reaches 100.use for loop,. pls guys hepl me.. :(
What is the function of this pointer?
Why c is called top down?