how many header file is in C language ?

Answer Posted / venky

iso c standard has 24 hederfiles...

Is This Answer Correct ?    20 Yes 13 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

we called a function and passed something do it we have always passed the "values" of variables to the called function. such functions calles are called a) calls by reference b) calls by value c) calls by zero d) none of the above

648


What is difference between structure and union in c programming?

579


Why c language?

656


What are 3 types of structures?

603


Can include files be nested? How many levels deep can include files be nested?

666






Can you explain what keyboard debouncing is, and where and why we us it? please give some examples

1670


write an interactive C program that will encode or decode a line of text.To encode a line of text,proceed as follows. 1.convert each character,including blank spaces,to its ASCII equivalent. 2.Generate a positive random integer.add this integer to the ASCII equivalent of each character.The same random integer will be used for the entire line of text. 3.Suppose that N1 represents the lowest permissible value in the ASCII code,and N2 represents the highest permissible value.If the number obtained in step 2 above(i.e.,the original ASCII equivalent plus the random integer)exceeds N2,then subtract the largest possible multiple of N2 from this number,and add the remainder to N1.Hence the encoded number will always fall between N1 and N2,and will therefore always represent some ASCII character. 4.Dislay the characters that correspond to the encoded ASCII values.  The procedure is reversed when decoding a line of text.Be certain,however,that the same random number is used in decodingas was used in encoding.

2735


What is the incorrect operator form following list(== , <> , >= , <=) and what is the reason for the answer?

963


What is function and its example?

640


What does sizeof int return?

601


write a program that types this pattern: 12345678987654321 12345678 87654321 1234567 7654321 123456 654321 12345 54321 1234 4321 123 321 12 21 1 1

3340


What are conditional operators in C?

632


Can a variable be both constant and volatile?

572


What are the 3 types of structures?

582


What is a rvalue?

755