What is pointers in c?


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

Post New Answer

More C Interview Questions

void main() { static int i = 5; if(--i) { main(); printf("%d ",i); } } what would be output of the above program and justify your answer? }

5 Answers   C DAC, CDAC, Infosys, Wipro,


which of 'arrays' or 'pointers' are faster?

5 Answers  


Write a Program to find whether the given number or string is palindrome.

0 Answers   InterGraph,


Write a program to print the following series 2 5 11 17 23 31 41 47 59 ...

2 Answers  


Why header files are used?

0 Answers  


what is the use of ~ in c lang?????

3 Answers  


can we implement multi-threads in c.

0 Answers  


When should the register modifier be used? Does it really help?

0 Answers  


main() { static int ivar=5; printf("%d",ivar--); if(ivar) main(); }

3 Answers   CSC,


Explain how can you avoid including a header more than once?

0 Answers  


How will you allocate memory to double a pointer?

1 Answers  


How to write a C program to determine the smallest among three nos using conditional operator?

2 Answers   Google,


Categories