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


Please Help Members By Posting Answers For Below Questions

Why is c called c not d or e?

831


What is static volatile in c?

733


program to find error in linklist.(i.e find whether any node point wrongly to previous nodes instead of next node)

1845


What is a file descriptor in c?

795


How will you declare an array of three function pointers where each function receives two ints and returns a float?

1027


I just typed in this program, and it is acting strangely. Can you see anything wrong with it?

754


Explain what is meant by 'bit masking'?

851


Does c have an equivalent to pascals with statement?

752


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); } }

2233


What is the difference between arrays and pointers?

834


What are inbuilt functions in c?

765


Explain the concept and use of type void.

843


What is the process of writing the null pointer?

771


What is function pointer c?

771


Explain null pointer.

797