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
What is the purpose of main( ) in c language?
What is function prototype in c with example?
Where is volatile variable stored?
What is integer constants?
Is main is a keyword in c?
Multiply an Integer Number by 2 Without Using Multiplication Operator
Explain how do you use a pointer to a function?
How can I read data from data files with particular formats?
5 Write an Algorithm to find the maximum and minimum items in a set of ānā element.
What is the translation phases used in c language?
How can you increase the size of a statically allocated array?
There is a practice in coding to keep some code blocks in comment symbols than delete it when debugging. How this affect when debugging?
What is the time and space complexities of merge sort and when is it preferred over quick sort?
Can true be a variable name in c?
Explain what is a static function?