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 / hansaj
Answer is a
| Is This Answer Correct ? | 1 Yes | 0 No |
Post New Answer View All Answers
how many errors in c explain deply
What are the different types of endless loops?
Explain can static variables be declared in a header file?
What is dynamic dispatch in c++?
what is uses of .net
#define f(g,h) g##h main O int i=0 int var=100 ; print f ("%d"f(var,10));} wat would be the output??
What does void main return?
What is the significance of c program algorithms?
What is a wrapper function in c?
What is operator precedence?
What does emoji p mean?
List the different types of c tokens?
What is a pointer in c plus plus?
Why should I prototype a function?
There is a practice in coding to keep some code blocks in comment symbols than delete it when debugging. How this affect when debugging?