how many header file is in C language ?

Answer Posted / sandeep reddy k

There are 19 header files in c language. Obviously we use some header files in particular cases.

Is This Answer Correct ?    3 Yes 2 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What are the types of macro formats?

798


What are the basic data types associated with c?

1024


How important is structure in life?

779


Why is sprintf unsafe?

799


What is wrong with this initialization?

762


Explain what are run-time errors?

807


a sequence of bytes with one to one corrspondence to those in the external device a) sequential addressing b) address c) byte code d) none

956


What is the purpose of the following code? Is there any problem with the code? void send(int count, short *to, short *from) { /* count > 0 assumed */ register n = (count + 7) / 8; switch (count % 8) { case 0: do { *to = *from++; case 7: *to = *from++; case 6: *to = *from++; case 5: *to = *from++; case 4: *to = *from++; case 3: *to = *from++; case 2: *to = *from++; case 1: *to = *from++; } while (--n > 0); } }

2242


what is the difference between class and unio?

2092


What is main () in c language?

831


By using C language input a date into it and if it is right?

794


What is file in c preprocessor?

873


Why is c called a structured programming language?

986


How can you allocate arrays or structures bigger than 64K?

885


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

812