Why do we use pointer to pointer in c?
No Answer is Posted For this Question
Be the First to Post Answer
void main(int n) { if(n==0) return; main(--n); printf("%d ",n); getch(); } how it work and what will be its output...............it any one know ans plz reply
What are the types of pointers in c?
Why do we use pointer to pointer in c?
What is a stream in c programming?
what is an ERP?
What is the output of below code? main() { static int a=5; printf("%3d",a--); if(a) main(); }
WHAT IS THE DIFFERENCE BETWEEN malloc() and calloc() in c file management?
28 Answers 3D PLM, Code Studio, Deltech, IBM,
If input is 123 then how to print 100 and 20 and 3 seperately?
how write a addtion of two single dimensional array using of pointer in c language?
Write a program to check palindrome number in c programming?
What is ambagious result in C? explain with an example.
How is a null pointer different from a dangling pointer?