What are the advantages of using macro in c language?
No Answer is Posted For this Question
Be the First to Post Answer
How can you read a directory in a C program?
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.
program to find the roots of a quardratic equation
What is malloc() function?
how to make program without <> in library.
without using arithmatic operator solve which number is greater??????????
why do some people write if(0 == x) instead of if(x == 0)?
What is a null string in c?
Why the below program throughs error during compilation? #include<stdio.h> #include<conio.h> enum { ZERO, ONE, TWO, }; main() { printf("%d",&TWO); getch(); }
writw a program to insert an element in the begning of a doubly linked list
When is a null pointer used?
write a programe to find the factorial of given number using recursion