how many header file is in C language ?
Answer Posted / kumaresan
C library having n number of header files. It can be used in
different purposes. Mostly used header files is stdio.h &
conio.h.
| Is This Answer Correct ? | 2 Yes | 0 No |
Post New Answer View All Answers
What is register variable in c language?
Without Computer networks, Computers will be half the use. Comment.
What are the salient features of c languages?
What is spark map function?
Does free set pointer to null?
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.
Write a program of prime number using recursion.
void main(int n) { if(n==0) return; main(--n); printf("%d ",n); getch(); } how it work and what will be its output...............it any one know ans plz reply
In C language, a variable name cannot contain?
What is operator precedence?
A banker has a seif with a cipher. Not to forget the cipher, he wants to write it coded as following: each digit to be replaced with the difference of 9 with the current digit. The banker chose a cipher. Decipher it knowing the cipher starts with a digit different than 9. I need to write a program that takes the cipher from the keyboard and prints the new cipher. I thought of the following: Take the input from the keyboard and put it into a string or an array. Go through the object with a for and for each digit other than the first, substract it from 9 and add it to another variable. Print the new variable. Theoretically I thought of it but I don't know much C. Could you give me any kind of hint, whether I am on the right track or not?
Explain how do you determine whether to use a stream function or a low-level function?
Explain what is a pragma?
main use of recursive function a) processing speed high b) reduce program length/reduce repeated statements c) if you do not, use iterative methods like, for, while or do-while d) all the above
What is a constant and types of constants in c?