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 / venkat
b.p=p+xq=q+y
| Is This Answer Correct ? | 3 Yes | 21 No |
Post New Answer View All Answers
What is hashing in c?
What is main return c?
What do you mean by a sequential access file?
Is struct oop?
What does char * * argv mean in c?
What are the 4 types of functions?
When should you use a type cast?
Is stack a keyword in c?
What are the types of data types and explain?
program to find error in linklist.(i.e find whether any node point wrongly to previous nodes instead of next node)
typedef enum { html, java, javascript, perl, cgi } lang;The above statement defines a : a) Union b) User defined type c) Enumerated variable d) none
What is #include cctype?
How do you convert a decimal number to its hexa-decimal equivalent.Give a C code to do the same
Explain logical errors? Compare with syntax errors.
The % symbol has a special use in a printf statement. How would you place this character as part of the output on the screen?