how many header file is in C language ?
Answer Posted / kuldeep
hi there total 48 header files in provided by the turbo c++.
if u want to saw all the header file : go in turbo c++ ide screen then:
1-> press + f1
2> open the header file nd count
| Is This Answer Correct ? | 5 Yes | 2 No |
Post New Answer View All Answers
Which header file is essential for using strcmp function?
What is the difference between near, far and huge pointers?
Is main is user defined function?
What is the use of clrscr?
What is an array in c?
Explain the difference between the local variable and global variable in c?
how to construct a simulator keeping the logical boolean gates in c
You are to write your own versions of strcpy() and strlen (). Call them mystrcpy() and mystrlen(). Write them first as code within main(), not as functions, then, convert them to functions. You will pass two arrays to the function in the case of mystrcpy(), the source and target array.
Given two strings S1 and S2. Delete from S2 all those characters which occur in S1 also and finally create a clean S2 with the relevant characters deleted.
regarding pointers concept
Input is "rama loves rajesh and rajesh Loves rama also and rajesh wear gloves and bloves" To print output is count the numbers of times repeted the word love without case sensitive.
Why clrscr is used in c?
a function gets called when the function name is followed by a a) semicolon (;) b) period(.) c) ! d) none of the above
Is there anything like an ifdef for typedefs?
Difference between constant pointer and pointer to a constant.