what is the difference between <stdio.h>and "stdio.h"?
Answer Posted / p srinivas rao
In the first case ie. <stdio.h>,the compiler will search
for the presence of the file named stdio.h in the include
directory as well as in the current directory.
Whereas in the second case("stdio.h"),compiler will search
only in the current directory.
| Is This Answer Correct ? | 13 Yes | 1 No |
Post New Answer View All Answers
What are the two different types of polymorphism?
What causes polymorphism?
Can abstract class have normal methods?
What are different oops concepts?
What is the benefit of oop?
Why oops is important?
Why is there no multiple inheritance?
Plese get me a perfect C++ program for railway/airway reservation with all details.
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 is object in oops?
what type of question are asked in thoughtworks pair programming round ?
What is abstraction and encapsulation?
What is a null tree?
What is inheritance and how many types of inheritance?
What is stream in oop?