Array is an lvalue or not?
No Answer is Posted For this Question
Be the First to Post Answer
Describe the steps to insert data into a singly linked list.
Why we use stdio h in c?
#define PRINT(int) printf("int = %d ",int) main() {< BR> intx,y,z; x=03;y=02;z=01; PRINT(x^x); z<<=3;PRINT(x); y>>=3;PRINT(y); }
write a program in c to find out the sum of digits of a number.but here is a condition that compiler sums the value from left to right....not right to left..
What are the application of c?
Why header files are used?
plz answer.... write a program that reads line (using getline) e.g."345", converts each line to an integer using "atoi" and computes the average of all the numbers read. also compute the standard deviation.
What is memcpy() function?
What is s in c?
What is the use of void pointer and null pointer in c language?
consider the following program sigment int n,sum=1; switch(n) { case 2:sum=sum+2; case 3:sum*=2; break; default:sum=0;} if n=2, what is the value of sum a.0 b.6 c.3 d.none
What is the difference between the expression “++a” and “a++”?