What is the behavioral difference when include header file in double quotes (“”) and angular braces (<>)?
Answer / Divakaran Kumar
Including a header file using double quotes will search for the header file in the current directory, while including it with angular braces will search for the header file in the standard system directories.
| Is This Answer Correct ? | 0 Yes | 0 No |
How can I prevent other programmers from violating encapsulation by seeing the private parts of my class?
What is dynamic memory allocation?
How do you sort filenames in a directory?
a=0; while(a<5) printf("%d\n",a++); how many times does the loop occurs? a.infinite b.5 c.4 d.6
What is difference between scanf and gets?
main() { printf("\n %d %d %d",sizeof('3'),sizeof("3"),sizeof(3)); }
What are control structures? What are the different types?
print pattern 1 1 33 33 555 555 77777777 555 555 33 33 1 1
how to find greatet of 10 numbers without using array?
Is c weakly typed?
What happens if header file is included twice?
What is the benefit of using #define to declare a constant?