what is the difference between #include<stdio.h> and
#include"stdio.h" ?
Answer Posted / mini bangar
when we write #include<stdio.h> preprocessor search for it in include directory directly.but when we write "stdio.h" precessor start searching for this header file from current directoryand then in parent directories.
| Is This Answer Correct ? | 25 Yes | 5 No |
Post New Answer View All Answers
How to declare a variable?
What are the disadvantages of external storage class?
Can I use base-2 constants (something like 0b101010)? Is there a printf format for binary?
What is the hardest programming language?
Write a C Program That Will Count The Number Of Even And Odd Integers In A Set using while loop
What is a constant and types of constants in c?
What is difference between far and near pointers?
What are the 5 organizational structures?
How do shell structures work?
What is output redirection?
Design a program which assigns values to the array temperature. The program should then display the array with appropriate column and row headings.
What are the output(s) for the following ? #include char *f() {char *s=malloc(8); strcpy(s,"goodbye")} main() { char *f(); printf("%c",*f()='A'); }
Are local variables initialized to zero by default in c?
What is build process in c?
Why array is used in c?