how many header file is in C language ?
Answer Posted / naznin nahar
there are64 header file in c language
| Is This Answer Correct ? | 0 Yes | 2 No |
Post New Answer View All Answers
Why is this loop always executing once?
we need to calculating INCOME TAX for the person. The INCOME TAX is as follows:- First $10000/- of income : 4% tax Next $10000/- of income : 8% tax Next $10000/- of income : 11.5% tax above $10, 00,00/- : 15% tax What is the Solution of this Question ?
How can you access memory located at a certain address?
Can we declare variables anywhere in c?
find the output? void r(int a[],int c, int n) { if(c>n) { a[c]=a[c]+c; r(a,++c,n); r(a,++c,n); } } int main() { int i,a[5]={0}; r(a,0,5); for(i=0;i<5;i++) printf("\n %d",a[i]); getch(); }
What is the difference between malloc() and calloc()?
What are nested functions in c?
Explain what is output redirection?
Can a function argument have default value?
What is spark map function?
How can a number be converted to a string?
Suggesting that there can be 62 seconds in a minute?
c program to compute AREA under integral
What are the different types of control structures?
Explain about block scope in c?