how many header file is in C language ?
Answer Posted / dharampal
32
| Is This Answer Correct ? | 18 Yes | 44 No |
Post New Answer View All Answers
what is associativity explain what is the precidence for * and & , * and ++ how the folloing declaration work 1) *&p; 2) *p++;
Is array a primitive data type in c?
What is calloc in c?
What is the use of getchar functions?
Can I initialize unions?
What should malloc() do? Return a null pointer or a pointer to 0 bytes?
What is function pointer c?
Can a pointer point to null?
a construct the"else" part of "if" statement contains anoth "if else" statement is called a) if-else b) else-if-else c) if-else-if-else d) chain if/if-else-if
What do you mean by a local block?
Here is a good puzzle: how do you write a program which produces its own source code as output?
Is array name a pointer?
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.
What is the difference between abs() and fabs() functions?
What is queue in c?