How are strings stored in c?
What is data structure in c language?
What is this infamous null pointer, anyway?
Difference between strcpy() and memcpy() function?
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?
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; }
How do you sort filenames in a directory?
Between macros and functions,which is better to use and why?
Explain how do you view the path?
What is the hardest programming language?
What is the purpose of sprintf() function?
How does memset() work in C?
the maximum length of a character constant can be a) 1 character b) 8 characters c) 256 chaacters d) 125 characters