how many header file is in C language ?
Answer Posted / vishal rana
#include<stdio.h>
#include<conio.h>
#include<math.h>
#include<string.h>
#include<malloc.h>
#include<process.h>
#include<time.h>
#include<calloc.h>
#include<graphic.h>
#include<limits.h>
| Is This Answer Correct ? | 34 Yes | 24 No |
Post New Answer View All Answers
Can you please explain the difference between malloc() and calloc() function?
Is it possible to pass an entire structure to functions?
How the c program is executed?
in multiple branching construct "default" case is a) optional b) compulsarily c) it is not include in this construct d) none of the above
Why functions are used in c?
Differentiate abs() function from fabs() function.
What is the difference between procedural and functional programming?
write a program fibonacci series and palindrome program in c
Explain bitwise shift operators?
Which is the best website to learn c programming?
What is pointer to pointer in c?
main() { inta=10,b=20; a>=5?b=100:b=200; printf("%d ",b); }
What is strcmp in c?
Are there any problems with performing mathematical operations on different variable types?
Write a code on reverse string and its complexity.