totally how much header files r in c language
Answers were Sorted based on User's Feedback
Answer / rakamal
According to ISO C99 standard totally 24 header files are
available
| Is This Answer Correct ? | 9 Yes | 4 No |
Answer / mod
there r 24 header files in iso standerd of c language
| Is This Answer Correct ? | 2 Yes | 2 No |
Answer / hari
two header files uaing the c language.but header files
keep the funcation declearcation saparte from function
dafanation
very large of appplication.& want to break into different
parts,this parts are into diff library called header files
| Is This Answer Correct ? | 2 Yes | 4 No |
actually there are more than 50 header files as for as i know........
thank u
| Is This Answer Correct ? | 7 Yes | 13 No |
given the piece of code int a[50]; int *pa; pa=a; to access the 6th element of the array which of the following is incorrect? a.*(a+5) b.a[5] c.pa[5] d.*(*pa + 5)
5) Write a program that takes a 3 digit number n and finds out whether the number 2^n + 1 is prime, or if it is not prime find out its factors.without using big int and exponential function
What is p in text message?
What's wrong with the call "fopen ("c:\newdir\file.dat", "r")"?
Write a programe print the sum of series 0,1,2,.....10
what will be the result of the following program ? char *gxxx() { static char xxx[1024]; return xxx; } main() { char *g="string"; strcpy(gxxx(),g); g = gxxx(); strcpy(g,"oldstring"); printf("The string is : %s",gxxx()); } a) The string is : string b) The string is :Oldstring c) Run time error/Core dump d) Syntax error during compilation e) None of these
#include <stdio.h> int main() { if ("X" <"x") printf("X smaller than x "); } my question is whats the mistake in this program? find it and please tell me..
How to add two numbers with using function?
In CMM or CMMI certified organizations,we assess only the standard software processes of the organization. We do not assess the organizations other functional departments like HR or Admin. Then how can we certify the entire organization as CMM level company?? We have assessed only software related activities. Right. There is no relation with other departments like Accounts, HR or Admin. Then how can we claim that the whole company is a CMM certified company?
write the function int countchtr(char string[],int ch);which returns the number of timesthe character ch appears in the string. for example the call countchtr("she lives in Newyork",'e') would return 3.
What are different storage class specifiers in c?
How can you increase the size of a dynamically allocated array?