If null and 0 are equivalent as null pointer constants, which should I use?
No Answer is Posted For this Question
Be the First to Post Answer
Explain following declaration int *P(void); and int (*p)(char *a);
main() { int ptr[] = {1,2,23,6,5,6}; printf("%d",&ptr[3]-&ptr[0]); }
Give differences between - new and malloc() , delete and free() ?
What is the value of y in the following code? x=7;y=0; if(x=6) y=7; else y=1;
What does void main () mean?
What is formal argument?
What are the rules for the identifier?
What will be printed as the result of the operation below: #include<..> int x; int modifyvalue() { return(x+=10); } int changevalue(int x) { return(x+=1); } void main() { int x=10; x++; changevalue(x); x++; modifyvalue(); printf("First output:%d\n",x); x++; changevalue(x); printf("Second output:%d\n",x); modifyvalue(); printf("Third output:%d\n",x); }
Write a program to use switch statement.
0 Answers Agilent, Integreon, ZS Associates,
What is optimization in c?
Write a program for print infinite numbers
what are bps & baud rates? differentiate these two?