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
Why is structure padding done in c?
When reallocating memory if any other pointers point into the same piece of memory do you have to readjust these other pointers or do they get readjusted automatically?
Which header file is used for clrscr?
FILE *fp1,*fp2; fp1=fopen("one","w") fp2=fopen("one","w") fputc('A',fp1) fputc('B',fp2) fclose(fp1) fclose(fp2)} a.error b. c. d.
Mention four important string handling functions in c languages .
Write a program to replace n bits from the position p of the bit representation of an inputted character x with the one's complement. Method invertBit takes 3 parameters x as input character, p as position and n as the number of positions from p. Replace n bits from pth position in 8 bit character x. Then return the characters by inverting the bits.
Is c high or low level?
HOW TO SOLVE A NUMERICAL OF LRU IN OS ??????
How can I prevent another program from modifying part of a file that I am modifying?
What is the difference between the = symbol and == symbol?
How do you redirect a standard stream?
The % symbol has a special use in a printf statement. Explain how would you place this character as part of the output on the screen?
Write a program to implement queue.
What is an identifier?
Define VARIABLE?