what is the function of .h in #include<stdio.h> in c ?
Answer Posted / victor chatterjee
.h is that extension in which the library files are being
saved. such as stdio.h, conio.h, iostream.h. it is the
header file which includes all the standard input output
functions.
| Is This Answer Correct ? | 4 Yes | 1 No |
Post New Answer View All Answers
What are pragmas and what are they good for?
What is the difference between typedef and #define?
Explain how do you determine whether to use a stream function or a low-level function?
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.
Explain the term printf() and scanf() used in c language?
Who is the main contributor in designing the c language after dennis ritchie?
What is C language ?
What are the preprocessor categories?
Write a program for finding factorial of a number.
Hi how many types of software editions are there and their difference (like home editions, enterprise, standard etc) can u please help me
Please send me WIPRO technical question to my mail ID.. its nisha_g28@yahoo.com please its urgent
What are the types of c language?
What do you mean by dynamic memory allocation in c?
What is sizeof array?
Can you add pointers together? Why would you?