why to assign a pointer to null sometimes??how can a pointer
we declare get assigned with a garbage value by default???
No Answer is Posted For this Question
Be the First to Post Answer
What is a pragma?
differentiate built-in functions and user – defined functions.
What is a ternary operator in c?
What is the use of ?: Operator?
How can I access a memory located at certain address?
What are preprocessor directives?
What is a floating point in c?
What is a method in c?
SIR PLS TELL ME THE CODE IN C LANGUAGE TO PRINT THE FOLLOWING SERIES 1 1 2 1 1 2 3 2 1 1 2 3 4 3 2 1 1 2 3 2 1 1 2 1 1
what is the difference between these initializations? Char a[]=”string”; Char *p=”literal”; Does *p++ increment p, or what it points to?
How to print "Hi World" without using semi colon?
i want explaination about the program and its stack reprasetaion fibbo(int n) { if(n==1 or n==0) return n; else return fibbo(n-1)+fibbo(n-2); } main() { fibbo(6); }