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 / bibaswan.guha

Venkat can you please explain why the behaviour is going to
be like this (what you have mentioned) ?
Because the ";" should be signifying the termination for
the first line.

Is This Answer Correct ?    9 Yes 1 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

How can I sort a linked list?

630


How do you write a program which produces its own source code as output?

600


design and implement a data structure and performs the following operation with the help of file (included 1000 student marks in 5 sub. and %also) 1.how many students are fail in all 5 subjects (if >35) 2. delete all student data those are fail in all 5 subjects. 3. update the grace marks (5 no. if exam paper is 100 marks) 4. arrange the student data in ascending order basis of marks. 5.insert double of deleted students with marks in the list.

1491


What is wild pointer in c with example?

568


What does %2f mean in c?

672






What is main function in c?

543


how to find anagram without using string functions using only loops in c programming

2710


a construct the"else" part of "if" statement contains anoth "if else" statement is called a) if-else b) else-if-else c) if-else-if-else d) chain if/if-else-if

697


what is the differnce between programing langauge and tool? is sas is a programing langauge r tool?

1896


What math functions are available for integers? For floating point?

616


What is the maximum length of an identifier?

657


Why is c so powerful?

675


a c code by using memory allocation for add ,multiply of sprase matrixes

2294


How many bytes are occupied by near, far and huge pointers (dos)?

660


Is it better to use a pointer to navigate an array of values, or is it better to use a subscripted array name?

646