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 / santhosh
all answers are wrong because
suppose for example can u give like i=i+1;
it it interprets as i+=1
so here it interprets as p+=x;
q+=;
| Is This Answer Correct ? | 7 Yes | 7 No |
Post New Answer View All Answers
What is clrscr in c?
Which header file is used for clrscr?
what is recursion in C
In C language, the variables NAME, name, and Name are all the same. TRUE or FALSE?
Explain about block scope in c?
Differentiate between a structure and a union.
Explain what will be the outcome of the following conditional statement if the value of variable s is 10?
Write a program with dynamically allocation of variable.
What do you mean by dynamic memory allocation in c? What functions are used?
What is the importance of c in your views?
Explain the meaning of keyword 'extern' in a function declaration.
What is a 'null pointer assignment' error? Explain what are bus errors, memory faults, and core dumps?
Explain the use of function toupper() with and example code?
GIVEN A FLOATING POINT NUMBER HOW IS IT ACTUALLY STORED IN MEMORY ? CAN ANYONE EXPLAIN?? THE 32 BIT REPRESENTATION OF A FLOATING POINT NUMBER ALLOTS: 1 BIT-SIGN 8 BITS-EXPONENT 23 BITS-MANTISSA
What are external variables in c?