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 / preetisahu
answer is a
| Is This Answer Correct ? | 31 Yes | 0 No |
Post New Answer View All Answers
What is the general form of a C program?
Linked list is a Linear or non linear explain if linear how it working as a non linear data structures
What are header files and explain what are its uses in c programming?
Write the program that calculates and prints the average of several integers. Assume that the last value read is sentinel 9999.
If a five digit number is input through the keyboard, write a program to print a new number by adding one to each of its digits.For example if the number that is input is 12391 then the output should be displayed as 23402
Explain what is a stream?
C program execution always begins with a) #include b) comment (/*-------*/) c) main() d) declaration instructions
How would you obtain the current time and difference between two times?
i have to apply for rbi before that i need to know the the syllabus for the entrance questions. whethet it may be aps or techinical
What is null in c?
Why c is known as a mother language?
what are the facialities provided by you after the selection of the student.
difference between Low, Middle, High Level languages in c ?
How does normalization of huge pointer works?
#include main() { int *p, *c, i; i = 5; p = (int*) (malloc(sizeof(i))); printf(" %d",*p); *p = 10; printf(" %d %d",i,*p); c = (int*) calloc(2); printf(" %d ",*c); }