what is the difference between #include<> and #include”…”?
Answer Posted / kush joshi
#include<>, include the predefined header files, but
#include"...." include the userdefined header files in c
program. in this within "...." we mention the path where
the users header file is stored.
| Is This Answer Correct ? | 7 Yes | 2 No |
Post New Answer View All Answers
Explain how can a program be made to print the name of a source file where an error occurs?
Explain b+ tree?
program for reversing a selected line word by word when multiple lines are given without using strrev
in programming languages a statement or part of a statement that specifies several different execution sequences a) constructs b) distructs c) executes d) none
What is meant by preprocessor in c?
Can we access array using pointer in c language?
What should malloc(0) do?
What is meant by type specifiers?
Why c is called a middle level language?
Write a program to print numbers from 1 to 100 without using loop in c?
Discuss the function of conditional operator, size of operator and comma operator with examples.
The % symbol has a special use in a printf statement. How would you place this character as part of the output on the screen?
What are the 5 elements of structure?
What are the keywords in c?
Explain how can I pad a string to a known length?