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

Answers were Sorted based on User's Feedback



how does the C compiler interpret the following two statements p=p+x; q=q+y; a. p=p+x..

Answer / preetisahu

answer is a

Is This Answer Correct ?    31 Yes 0 No

how does the C compiler interpret the following two statements p=p+x; q=q+y; a. p=p+x..

Answer / hansaj

Answer is a

Is This Answer Correct ?    1 Yes 0 No

Post New Answer

More C Interview Questions

#include show(int t,va_list ptr1) { int a,x,i; a=va_arg(ptr1,int) printf(" %d",a) } display(char) { int x; listptr; va_star(otr,s); n=va_arg(ptr,int); show(x,ptr); } main() { display("hello",4,12,13,14,44); }

0 Answers   Wilco,


Program will then find the largest of three numbers using nested if-else statements. User is prompted to enter three numbers. Program will find the largest number and display it on the screen. All three numbers entered by the user are also displayed. If user enters 21, 33, and 5, the output should be as follows: You entered: 21, 33 and 5. The largest number is 33.

0 Answers  


What does printf does?

0 Answers  


what is the differnce between AF_INET and PF_INET?

5 Answers   Systems Plus, Wipro,


What is a sequential access file?

0 Answers  






WAP to accept first name,middle name & last name of a student display its initials?

5 Answers   AITH, NIIT,


what are brk, sbrk?

1 Answers   Oracle,


what is Array?

3 Answers  


diff between exptected result and requirement?

0 Answers   HCL,


Do you know what are bitwise shift operators in c programming?

0 Answers  


When a c file is executed there are many files that are automatically opened what are they files?

0 Answers  


how to find sum of 5 digits in C?

4 Answers  


Categories