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
Array is an lvalue or not?
to find the closest pair
What is bubble sort technique in c?
Explain low-order bytes.
What are the different types of control structures in programming?
Why is c called c not d or e?
Explain a pre-processor and its advantages.
What are the advantages and disadvantages of a heap?
What is the purpose of main( ) in c language?
i = 25;switch (i) {case 25: printf("The value is 25 ");case 30: printf("The value is 30 "); When the above statements are executed the output will be : a) The value is 25 b) The value is 30 c) The value is 25 The value is 30 d) none
What is the mean of function?
What is the difference between test design and test case design?
What is #ifdef ? What is its application?
What is the difference between union and structure in c?
What is the meaning of typedef struct in c?