what is the difference between #include<> and #include”…”?
Answer Posted / shrikanth s.h
#include<>, include the predefined header files,
#include"...." include the userdefined header files where
the control will start searching the file into the current
directory, we should mention the path where it should search.
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
What is the -> in c?
Is a pointer a kind of array?
Explain the term printf() and scanf() used in c language?
What is bubble sort technique in c?
main use of recursive function a) processing speed high b) reduce program length/reduce repeated statements c) if you do not, use iterative methods like, for, while or do-while d) all the above
Explain how do you sort filenames in a directory?
Is main a keyword in c?
What is a spanning Tree?
any restrictions have on the number of 'return' statements that may be present in a function. a) no restriction b) only 2 return statements c) only 1 return statements d) none of the above
FILE PROGRAMMING
Differentiate between calloc and malloc.
Explain the use of 'auto' keyword in c programming?
How many bytes is a struct in c?
Describe newline escape sequence with a sample program?
Difference between pass by reference and pass by value?