what is the difference between <stdio.h>and "stdio.h"?
Answer Posted / amit
<stdio.h> means it will search in current directories
"stdio.h" means it will search in entire drive. ie current
drive.
| Is This Answer Correct ? | 0 Yes | 2 No |
Post New Answer View All Answers
#include
What is polymorphism and its types?
What is the purpose of polymorphism?
What is debug class?what is trace class? What differences are between them? With examples.
What is a null tree?
What is the important feature of inheritance?
Can private class be inherited?
Describe these concepts: Polymorphism, Inheritance and Abstraction.
Why multiple inheritance is not allowed?
What is interface in oop?
What do you mean by overloading?
Why do we use encapsulation in oops?
class CTest { public: void someMethod() { int nCount = 0; cout << "This is some method --> " << nCount; } }; int main() { CTest *pctest; pctest->someMethod(); return 0; } It will executes the someMethod() and displays the value too. how is it possible with our creating memory for the class . i think iam not creating object for the class. Thanks in Advance... Prakash
What does it mean when someone says I oop?
What are objects in oop?