Why header file is used in c?


No Answer is Posted For this Question
Be the First to Post Answer

Post New Answer

More C Interview Questions

What is a union?

0 Answers  


Why is not a pointer null after calling free?

0 Answers  


program for validity of triangle from 3 side

7 Answers  


main() { unsigned int k = 987 , i = 0; char trans[10]; do { trans[i++] =(char) (k%16 > 9 ? k%16 - 10 + 'a' : '\0' ); } while(k /= 16); printf("%s\n", trans); }

4 Answers   Vector,


how many error occurs in C language ?

22 Answers   Infosys, Wipro,






What Is The Difference Between Null And Void Pointer?

0 Answers   TCS,


what is the use of ‘auto’ keyword?

1 Answers  


what is diffrence between string and character array?

1 Answers  


How can I check whether a file exists? I want to warn the user if a requested input file is missing.

0 Answers  


What are the 4 types of functions?

0 Answers  


#include<std.h> int main() { char *str[]={"Frogs","Do","Not","Die","They","Croak!"}; printf("%d %d\n",sizeof(str),strlen(str)); ...return 0; } what will the output of the above program?

6 Answers  


Can we use any name in place of argv and argc as command line arguments?

0 Answers  


Categories