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
What are the types of macro formats?
What are the basic data types associated with c?
How important is structure in life?
Why is sprintf unsafe?
What is wrong with this initialization?
Explain what are run-time errors?
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
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); } }
what is the difference between class and unio?
What is main () in c language?
By using C language input a date into it and if it is right?
What is file in c preprocessor?
Why is c called a structured programming language?
How can you allocate arrays or structures bigger than 64K?
Can we use any name in place of argv and argc as command line arguments?