how many header file is in C language ?
Answers were Sorted based on User's Feedback
Answer / ankit chaliyan
there are 27 type of header file in clanguage
| Is This Answer Correct ? | 0 Yes | 3 No |
Answer / archana shukla
it can have any number of header files. but it ha smore
than 8 header files. .... About 24 header file in a C
Language. ...
| Is This Answer Correct ? | 2 Yes | 6 No |
Answer / purna chandra reddy
there are 256 header files are ther in c language
| Is This Answer Correct ? | 8 Yes | 13 No |
Answer / sampath
In my point of you there are above 300 header files are
there.
| Is This Answer Correct ? | 2 Yes | 12 No |
Answer / lohith
it can have any number of header files. but it ha smore
than 8 header files.
| Is This Answer Correct ? | 59 Yes | 70 No |
const char * char * const What is the differnce between the above tow?.
Why doesn't C have nested functions?
What are the similarities between c and c++?
what is a non volatile key word in c language?
Why do we use main function?
Write a program to print this triangle: * ** * **** * ****** * ******** * ********** Don't use printf statements;use two nested loops instead. you will have to use braces around the body of the outer loop if it contains multiple statements.
Write a Program to print this triangle: * ** * **** * ****** * ******** * ********** use two nested loops.
12 Answers MIT, TCS,
What is string concatenation in c?
Tell me a C program to display the following Output? 1 1 1 1 1 2 2 2 2 3 3 3 4 4 5
What is structure padding ?
#include<stdio.h> main() { int i=5; printf("%d",i*i-- - --i*i*i++ + ++i); } tell the answer with correct reason .specially reason is important nt answer ans by turbo c is -39
What is structure and union in c?