how many header file is in C language ?
Answer Posted / varun nayyar
<assert.h>
<complex.h>
<ctype.h>
<errno.h>
<fenv.h>
<float.h>
<inttypes.h>
<iso646.h>
<limits.h>
<locale.h>
<math.h>
<setjmp.h>
<signal.h>
<stdarg.h>
<stdbool.h>
<stddef.h>
<stdint.h>
<stdio.h>
<stdlib.h>
<string.h>
<tgmath.h>
<time.h>
<wchar.h>
<wctype.h>
| Is This Answer Correct ? | 5 Yes | 1 No |
Post New Answer View All Answers
State the difference between x3 and x[3].
Differentiate call by value and call by reference?
What is ambagious result in C? explain with an example.
Write a function expand(s1,s2) that expands shorthand notations like a-z in the string s1 into the equivalent complete list abc...xyz in s2 . Allow for letters of either case and digits, and be prepared to handle cases like a-b-c and a-z0-9 and -a-z. z-a:zyx......ba -1-6-:-123456- 1-9-1:123456789987654321 a-R-L:a-R...L a-b-c:abbc
What is difference between stdio h and conio h?
What are the types of bitwise operator?
p*=(++q)++*--p when p=q=1 while(q<=6)
Does c have enums?
Write the program that calculates and prints the average of several integers. Assume that the last value read is sentinel 9999.
What are the 5 data types?
explain how do you use macro?
How would you rename a function in C?
What is variables in c?
Why do we need volatile in c?
Why is python slower than c?