why we use "include" word before calling the header file. is there any special name for that include??????
Answer Posted / amar
include is generally a sentence but in C it helps to include or we can say connect our source program to C header files such that #include<stdio.h>,#include<math.h> etc.
| Is This Answer Correct ? | 11 Yes | 0 No |
Post New Answer View All Answers
How many data structures are there in c?
Differentiate between the expression “++a” and “a++”?
What type of function is main ()?
Can a void pointer point to a function?
Explain can static variables be declared in a header file?
Is anything faster than c?
What is ctrl c called?
can we implement multi-threads in c.
difference between object file and executable file
What is the use of gets and puts?
How do you generate random numbers in C?
int i=10; printf("%d %d %d", i, i=20, i);
why wipro wase
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.
Explain how can type-insensitive macros be created?