What is pointer to pointer in c?
No Answer is Posted For this Question
Be the First to Post Answer
How to find the given no is odd or even without checking of any condition and loops. (Hint: Using array)
Explain do array subscripts always start with zero?
WHAT IS THE DIFFERENCE BETWEEN malloc() and calloc() in c file management?
28 Answers 3D PLM, Code Studio, Deltech, IBM,
Why c is procedure oriented?
The __________ attribute is used to announce variables based on definitions of columns in a table?
Write a program that takes a 5 digit number and calculates 2 power that number and prints it(should not use big integers and exponential functions)
2 Answers HCL, IBM, Satyam, Vimal, Vimukti Technologies,
1 232 34543 4567654 can anyone tell me how to slove this c question
What is function pointer and where we will use it
What is d'n in c?
biggest of two no's with out using if condition statement
what is disadvantage of pointer in C
fn f(x) { if(x<=0) return; else f(x-1)+x; }