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
How many identifiers are there in c?
how to solve "unable to open stdio.h and conio.h header files in windows 7 by using Dos-box software
When do we get logical errors?
What is the purpose of 'register' keyword in c language?
When should the const modifier be used?
This is a variation of the call_me function in the previous question:call_me (myvar)int *myvar;{ *myvar += 5; }The correct way to call this function from main() will be a) call_me(myvar) b) call_me(*myvar) c) call_me(&myvar) d) expanded memory
Do you know pointer in c?
What is a program flowchart and explain how does it help in writing a program?
Given an array of 1s and 0s arrange the 1s together and 0s together in a single scan of the array. Optimize the boundary conditions?
What is the difference between %d and %i?
what is the diffrenet bettwen HTTP and internet protocol
What is the ANSI C Standard?
How does normalization of huge pointer works?
Why we use break in c?
In C programming, how do you insert quote characters (‘ and “) into the output screen?