What is use of pointer?


No Answer is Posted For this Question
Be the First to Post Answer

Post New Answer

More C Interview Questions

#include<stdio.h> int f(int,int); int main() { printf("%d",f(20,1)); return 0; } int f(int n,int k) { if(n==0) return 0; else if(n%2)return f(n/2,2*k)+k; else return f(n/2,2*k)-k; } how this program is working and generating output as 9....?

1 Answers  


What is hashing in c language?

0 Answers  


Explain goto?

0 Answers  


What is structure in c language?

0 Answers  


How can I generate floating-point random numbers?

0 Answers  






how to print electricity bill according to following charges first 100 units -1rs per unit for next 200 units-1.50 rs per unit without using conditions

0 Answers  


write a C and C++ programme to implement the A,bubble sort B,quick sort C,insertion sort D,sequential search E,binary search

1 Answers   ADP, TCS,


What are the application of void data type in c?

0 Answers  


Define Array of pointers.

0 Answers  


what is a far pointer

12 Answers   ABB, DRDO, ITI, Maruti Suzuki, Steel Plant, TCS, Toyota, Vivo Mobiles,


What is the difference between constant pointer and constant variable?

0 Answers   NIIT,


Why is C language being considered a middle level language?

0 Answers  


Categories