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
without using arithmatic operator convert an intger variable x into x+1
Is it better to use malloc() or calloc()?
if a five digit number is input through the keyboard, write a program to calculate the sum of its digits. (hint:-use the modulus operator.'%')
Lists the benefits of c programming language?
What is wrong in this statement?
how can i get the output 54321 4321 321 21 1 in c programming........???? pls help......
What is the size of array float a(10)?
hello friends what do u mean by BUS ERROR i got this error while i am doing my program in DATA STRUCTURES
Describe wild pointers in c?
Can a function be forced to be inline? Also, give a comparison between inline function and the C macro?
what is difference between C and C++
why do some people write if(0 == x) instead of if(x == 0)?