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 |
given a set based questions and 5 questions based on it next data sufficiciency questions 2 and 2/3 english sentence completion with options very easy and 2 synononmys paragraph with 10 questions 10 minutes replace =,-,*,% with -,%,+,* type questions 5 3 questions lik following itssickhere itssickthere itssickhere istsickhere which is nt alike the others very easy
How do you define social class?
What are the OOPS concepts?
106 Answers A1 Technology, Bajaj, CTS, EDS, HP, Infosys, Intel, Microsoft, MNC, Persistent, PlanetSoft, ProConstructor, TCS, Virtusa, Wipro, YSoft Solutions,
write a program in c++ to overload the function add (s1,s2) where s1 and s2 are integers and floating point values.
can inline function declare in private part of class?
Give two or more real cenario of virtual function and vertual object
Can we call a base class method without creating instance?
What are the 5 oop principles?
What do you mean by overloading?
Describe what an Interface is and how it?s different from a Class.
#include <iostream> using namespace std; int main() { int a = 3; int c[5][5]; for (int x=0;x<5;x++) { for (int y=0;y<5;y++) { c[x][y] = x*y; } } cout << c[a][2]; }
What are the benefits of interface?