Do pointers take up memory?


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

Post New Answer

More C Interview Questions

write the function int countchtr(char string[],int ch);which returns the number of timesthe character ch appears in the string. for example the call countchtr("she lives in Newyork",'e') would return 3.

6 Answers  


how to find anagram without using string functions using only loops in c programming

0 Answers  


How to write a multi-statement macro?

0 Answers  


write a program to copy a string without using a string?

2 Answers  


where can function pointers be used?

2 Answers  






Can we declare a function inside a function in c?

0 Answers  


write a program to convert a expression in polish notation(postfix) to inline(normal) something like make 723+* (2+3) x 7 (not sure) just check out its mainly printing expression in postfix form to infix.

0 Answers   Subex,


When would you use a pointer to a function?

0 Answers  


Can you please explain the scope of static variables?

0 Answers  


What is the full form of getch?

0 Answers  


Explain why c is faster than c++?

0 Answers  


#include<stdio.h> main() { char s1[]="Ramco"; char s2[]="Systems"; s1=s2; printf("%s",s1); } Find the output

5 Answers   CitiGroup,


Categories