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 are the disadvantages of a shell structure?
Is return a keyword in c?
to find the closest pair
Explain what is the purpose of "extern" keyword in a function declaration?
what is the different bitween abap and abap-hr?
What is the difference between a function and a method in c?
If the size of int data type is two bytes, what is the range of signed int data type?
What are the advantages of using macro in c language?
Explain that why C is procedural?
Explain what is output redirection?
What the advantages of using Unions?
How can I discover how many arguments a function was actually called with?
How can a program be made to print the line number where an error occurs?
Do you know the difference between exit() and _exit() function in c?
What is quick sort in c?