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
Why is c called c not d or e?
What is static volatile in c?
program to find error in linklist.(i.e find whether any node point wrongly to previous nodes instead of next node)
What is a file descriptor in c?
How will you declare an array of three function pointers where each function receives two ints and returns a float?
I just typed in this program, and it is acting strangely. Can you see anything wrong with it?
Explain what is meant by 'bit masking'?
Does c have an equivalent to pascals with statement?
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 arrays and pointers?
What are inbuilt functions in c?
Explain the concept and use of type void.
What is the process of writing the null pointer?
What is function pointer c?
Explain null pointer.