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 / hansaj

Answer is a

Is This Answer Correct ?    1 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Write a Program to accept different goods with the number, price and date of purchase and display them

5426


Can you mix old-style and new-style function syntax?

654


find the output? void r(int a[],int c, int n) { if(c>n) { a[c]=a[c]+c; r(a,++c,n); r(a,++c,n); } } int main() { int i,a[5]={0}; r(a,0,5); for(i=0;i<5;i++) printf("\n %d",a[i]); getch(); }

1855


What are enums in c?

650


What is size of union in c?

570






What is the purpose of realloc()?

661


What is line in c preprocessor?

606


What is the significance of an algorithm to C programming?

585


Explain how can you determine the size of an allocated portion of memory?

612


What is malloc() function?

628


What is memory leak in c?

625


write a c program to print the next of a particular no without using the arithmetic operator or looping statements?

3171


What is 1f in c?

1823


What is the purpose of void pointer?

589


What is time complexity c?

558