Answer Posted / santhosh
showbit is a pre-defined function is used for showing the
decimal value converts to binary digits. For Example:
#include<stdio.h>
main()
{
int a = 10;
showbit(7);
return 0;
}
Output:
0000 0111
| Is This Answer Correct ? | 20 Yes | 51 No |
Post New Answer View All Answers
What is a header file?
What is a node in c?
c language supports bitwise operations, why a) 'c' language is system oriented b) 'c' language is problem oriented c) 'c' language is middle level language d) all the above
What is a structure in c language. how to initialise a structure in c?
What are valid signatures for the Main function?
What is the use of in c?
What does nil mean in c?
What are the different data types in C?
What is difference between scanf and gets?
What is structure and union in c?
When should you not use a type cast?
Explain which of the following operators is incorrect and why? ( >=, <=, <>, ==)
The statement, int(*x[]) () what does in indicate?
What is an arrays?
How will you divide two numbers in a MACRO?