What does *p++ do? What does it point to?
No Answer is Posted For this Question
Be the First to Post Answer
write a program that eliminates the value of mathematical constant e by using the formula e=1+1/1!+1/2!+1/3!+
What is sizeof array in c?
What is the function of ceil(X) defined in math.h do? A)It returns the value rounded down to the next lower integer B)it returns the value rounded up to the next higher integer C)the Next Higher Value D)the next lower value
why programming language C is still used in operating system's kernel??
how can f be used for both float and double arguments in printf? Are not they different types?
main() { char ch='356'; Printf("%d",ch); } *OUTPUT*:- -18 *Why?*
Why is c faster?
What is the c value paradox and how is it explained?
#include<conio.h> #include<stdio.h> void main() { int i; if(1,0,2,3) { printf("if"); } else { printf("else"); } getch(); } Can any body tell the answer of this question with explanation?
What is #pragma statements?
How will you delete a node in DLL?
main() { int i,j,A; for(A=-1;A<=1;A++) prinf("%d\t",!!A); }