what is the difference between <stdio.h>and "stdio.h"?
Answers were Sorted based on User's Feedback
Answer / 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 |
Answer / ramakrishna yechuri
In the first case ie. <stdio.h>,the compiler will search
for the presence of the file named stdio.h in the
current directory.
Whereas in the second case("stdio.h"),compiler will search
in all the directories.
| Is This Answer Correct ? | 5 Yes | 1 No |
<stdio.h> is the System Include so while compilation it
will be searched in the system include folder and as well
as the current folder. "stdio.h" is the user include so,
will be searched in the current directory only.
| Is This Answer Correct ? | 4 Yes | 2 No |
Answer / pramod
<stdio.h> -----search in standard path defined in PATH variable
"stdio.h" -----search in current directory then in standard
PATH
| Is This Answer Correct ? | 2 Yes | 0 No |
Answer / 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 |
What is protected in oop?
difference between static and non-static variables?
What do you mean by stack program? Get me an example stack program?
Can a varargs method be overloaded?
Difference between vector and array
1. Wrie a function which returns the most frequent number in a list of integers. Handle the case of more than one number which meets this criterion. public static int[] GetFrequency(int[] list)
Can an interface inherit a class?
to remove the repeated numbers from the given . i.e.., if the input is 12233 output should of 123
design class for linked list and include constructor,destructor,insert option. struct node { int node; struct node &ptr; }
Get me a number puzzle game-program
When a private constructer is being inherited from one class to another class and when the object is instantiated is the space reserved for this private variable in the memory??
What is pure oop?