Answer Posted / mastan vali.shaik
the element of 5th row and 0th column
| Is This Answer Correct ? | 6 Yes | 14 No |
Post New Answer View All Answers
What is the use of typedef in structure in c?
What is void c?
Are pointers integer?
can we implement multi-threads in c.
What is array of structure in c?
What is pass by value in c?
Explain data types & how many data types supported by c?
Explain Basic concepts of C language?
What is a 'null pointer assignment' error? Explain what are bus errors, memory faults, and core dumps?
What are header files? What are their uses?
int main() { Int n=20,i; For(i=0;i<=n;i--) { Printf(“-“); Return 0;
How is a macro different from a function?
Can include files be nested?
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 what are binary trees?