How are strings stored in c?


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

Post New Answer

More C Interview Questions

What is data structure in c language?

0 Answers  


What is this infamous null pointer, anyway?

0 Answers  


Difference between strcpy() and memcpy() function?

0 Answers  


can any one tell that i have a variable which is declared as static but i want this variable to be visible to the other files? how?

2 Answers  


what is out put of the following code? #include class Base { Base() { cout<<"constructor base"; } ~Base() { cout<<"destructor base"; } } class Derived:public Base { Derived() { cout<<"constructor derived"; } ~Derived() { cout<<"destructor derived"; } } void main() { Base *var=new Derived(); delete var; }

3 Answers   Honeywell,






How do you sort filenames in a directory?

0 Answers  


Between macros and functions,which is better to use and why?

0 Answers  


Explain how do you view the path?

0 Answers  


What is the hardest programming language?

0 Answers  


What is the purpose of sprintf() function?

0 Answers  


How does memset() work in C?

2 Answers  


the maximum length of a character constant can be a) 1 character b) 8 characters c) 256 chaacters d) 125 characters

0 Answers  


Categories