how many header file is in C language ?
Answer Posted / ankit chaliyan
there are 27 type of header file in clanguage
| Is This Answer Correct ? | 0 Yes | 3 No |
Post New Answer View All Answers
How would you rename a function in C?
How many types of functions are there in c?
Why c is called object oriented language?
Explain null pointer.
Which is better between malloc and calloc?
Why header file is used in c?
Why should I use standard library functions instead of writing my own?
explain how do you use macro?
What are the disadvantages of c language?
Can we initialize extern variable in c?
Explain what is the heap?
What type is sizeof?
Write a C program that will accept a hexadecimal number as input and then display a menu that will permit any of the following operations to be carried out: Display the hexadecimal equivalent of the one's complement. (b) Carry out a masking operation and then display the hexadecimal equivalent of the result. (c) Carry out a bit shifting operation and then display the hexadecimal equivalent of the result. (d) Exit. If the masking operation is selected, prompt the user lor the type of operation (bitwise and, bitwise exclusive or, or bitwise or) and then a (hexadecimal) value for the mask. If the bit shifting operation is selected. prompt the user for the type of shift (left or right), and then the number of bits. Test the program with several different (hexadecimal) input values of your own choice.
Why pointers are used?
write a program to convert a expression in polish notation(postfix) to inline(normal) something like make 723+* (2+3) x 7 (not sure) just check out its mainly printing expression in postfix form to infix.