how many header file is in C language ?

Answer Posted / vignesh

42 Header Files are available.

Is This Answer Correct ?    2 Yes 1 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

writ a program to compare using strcmp VIVA and viva with its output.

1529


What is chain pointer in c?

605


What are header files? What are their uses?

642


Explain about the functions strcat() and strcmp()?

601


process by which one bit patten in to another by bit wise operation is? (a) masking, (b) pruning, (c) biting, (d) chopping,

1895






how much salary u want ? why u join in our company? your domain is core sector why u prefer software ?

1507


What is a macro, and explain how do you use it?

631


Write a program to print factorial of given number without using recursion?

573


Explain b+ tree?

632


What is an identifier?

632


Tell me the use of bit field in c language?

634


What is the difference between text and binary i/o?

596


write a program that declares an array of 30 elements named "income" in the main functions. then cal and pass the array to a programmer-defined function named "getIncome" within the "getIncome" function, ask the user for annual income of 30 employees. then calculate and print total income on the screen using the following function: "void getIncome ( ai []);

1850


#include main() { int *p, *c, i; i = 5; p = (int*) (malloc(sizeof(i))); printf(" %d",*p); *p = 10; printf(" %d %d",i,*p); c = (int*) calloc(2); printf(" %d ",*c); }

633


What is function in c with example?

635