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
What are the primitive data types in c?
Study the following C program :call_me (myvar)int myvar;{ myvar +- 5; }main(){int myvar;myvar = 3;call_me(myvar);printf("%d ",myvar);What will be printed a) 3 b) 5 c) 8 d) symbol
Write a program of prime number using recursion.
How to declare pointer variables?
What are global variables and how do you declare them?
Why is it usually a bad idea to use gets()? Suggest a workaround.
What is the explanation for cyclic nature of data types in c?
The % symbol has a special use in a printf statement. Explain how would you place this character as part of the output on the screen?
Hai what is the different types of versions and their differences
What is a c token and types of c tokens?
Is there a way to have non-constant case labels (i.e. Ranges or arbitrary expressions)?
What are qualifiers in c?
Can you return null in c?
What is #define in c?
What is calloc()?