What is pointers in c?
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?
Write a Program to find whether the given number or string is palindrome.
Write a program to print the following series 2 5 11 17 23 31 41 47 59 ...
Why header files are used?
what is the use of ~ in c lang?????
can we implement multi-threads in c.
When should the register modifier be used? Does it really help?
main() { static int ivar=5; printf("%d",ivar--); if(ivar) main(); }
Explain how can you avoid including a header more than once?
How will you allocate memory to double a pointer?
How to write a C program to determine the smallest among three nos using conditional operator?