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 / bibaswan.guha
Venkat can you please explain why the behaviour is going to
be like this (what you have mentioned) ?
Because the ";" should be signifying the termination for
the first line.
| Is This Answer Correct ? | 9 Yes | 1 No |
Post New Answer View All Answers
How does struct work in c?
Is there a way to compare two structure variables?
what is use of malloc and calloc?
write a c program to find the sum of five entered numbers using an array named number
What are types of preprocessor in c?
The difference between printf and fprintf is ?
What are volatile variables in c?
What is a good way to implement complex numbers in c?
How can I delete a file?
Describe dynamic data structure in c programming language?
In c programming, explain how do you insert quote characters (? And ?) Into the output screen?
What are the features of c languages?
how to capitalise first letter of each word in a given string?
What would be an example of a structure analogous to structure c?
Can variables be declared anywhere in c?