what is the difference between #include<stdio.h> and
#include "stdio.h" ?
Answers were Sorted based on User's Feedback
Answer / vignesh1988i
in case of <stdio.h> this will be checking only the folder
containing C compiler...... as we will be describing the
path in the directories option in the IDE.....
in case of "stdio.h" this will be checking the entire hard
disk there by deleting the path given in the directories
explicitly .....
thank u
| Is This Answer Correct ? | 16 Yes | 0 No |
Answer / jasbir singh
When we use #include<stdio.h>, the compiler will look at the
compiler's directory for stdio.h file and then include it.
When we use #include"stdio.h", it will look in the source
code's directory for the stdio.h file.
"" are basically used when the header file is placed with
the source code(means .c or .cpp files), not in the C
Compiler's 'include' directory. It is basically used to
include our own self generated header files into our program.
| Is This Answer Correct ? | 10 Yes | 1 No |
Answer / n
implementation defined. read manual for the compiler you use.
if include " " fails, then include < > is tried
| Is This Answer Correct ? | 0 Yes | 0 No |
Write a c program to read a positive number and display it in words.? ex: 123=one two three help me....
1.)how to find d most repeated word in a string? string ="how do you do"?? output should be do
1 Answers AAS, Nagarro, Vuram,
Do you know the difference between malloc() and calloc() function?
sir i wanted to know how we wap in c to add numbers without using arithmetic operator in which digits are entered by user?
How can type-insensitive macros be created?
Write a program to print “hello world” without using semicolon?
What is fflush() function?
a c variable cannot start with a) an alphabet b) a number c) a special symbol d) both b and c above
in malloc and calloc which one is fast and why?
Why c language?
Which function in C can be used to append a string to another string?
wats the diference btwen constant pointer and pointer to a constant.pls give examples.