how many header file is in C language ?
Answer Posted / prashant gupta
26 header files in C language.
| Is This Answer Correct ? | 16 Yes | 36 No |
Post New Answer View All Answers
How do you determine whether to use a stream function or a low-level function?
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 the difference between formatted&unformatted i/o functions?
What is malloc and calloc?
Explain what is the difference between functions getch() and getche()?
What is signed and unsigned?
How can I dynamically allocate arrays?
Why we use void main in c?
What is the difference between array and linked list in c?
FORMATTED INPUT/OUTPUT functions are a) scanf() and printf() b) gets() and puts() c) getchar() and putchar() d) all the above
How can you determine the size of an allocated portion of memory?
What is a structural principle?
How can I sort a linked list?
Dont ansi function prototypes render lint obsolete?
Is malloc memset faster than calloc?