what is the difference between #include<> and #include”…”?
Answer Posted / anandi
Both #include<> and #include" " are similar used to include
the header files.....But we can use both #include<> and
#include" " for predefined header files...... At the same
time we can not use the #include<> for the user-defined
header files..... We should use #include" " for the user-
defined header files......
| Is This Answer Correct ? | 2 Yes | 0 No |
Post New Answer View All Answers
How do you print only part of a string?
Can you add pointers together? Why would you?
What are the usage of pointer in c?
What are the 5 types of organizational structures?
When c language was developed?
What are pointers? What are stacks and queues?
What does 4d mean in c?
Explain how can you tell whether a program was compiled using c versus c++?
Where register variables are stored in c?
Explain data types & how many data types supported by c?
What is a volatile keyword in c?
Where is volatile variable stored?
Can you subtract pointers from each other? Why would you?
A text file that contains declarations used by a group of functions,programs,or users a) executable file b) header file c) obj file d) .cfile
Can the curly brackets { } be used to enclose a single line of code?