what information does the header files contain?
Answer Posted / vivek k dixit
A header file contains #define,structure,union and enum
declarations,it also contains global variable and external
funtion declarations.The # include directive should be used
to pull in header files.
| Is This Answer Correct ? | 5 Yes | 1 No |
Post New Answer View All Answers
.main() { char *p = "hello world!"; p[0] = 'H'; printf("%s",p); }
What are the types of data types and explain?
which is an algorithm for sorting in a growing Lexicographic order
What are the different types of data structures in c?
about c language
What is c language used for?
FILE *fp1,*fp2; fp1=fopen("one","w") fp2=fopen("one","w") fputc('A',fp1) fputc('B',fp2) fclose(fp1) fclose(fp2)} a.error b. c. d.
What is 2c dna?
What should malloc(0) do?
What are the types of data structures in c?
What is call by value in c?
What is the purpose of & in scanf?
What does %d do in c?
Difference between constant pointer and pointer to a constant.
What does %p mean c?