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 applications of c language?
How can I determine whether a machines byte order is big-endian or little-endian?
What does typeof return in c?
What is the use of extern in c?
What is the difference between constant pointer and constant variable?
What is the incorrect operator form following list(== , <> , >= , <=) and what is the reason for the answer?
What is spark map function?
An application package has been provided to you without any documents for the following application. The application needs to be tested. How will you proceed?
What are the different types of endless loops?
plz let me know how to become a telecom protocol tester. thank you.
Explain what is the difference between a string copy (strcpy) and a memory copy (memcpy)? When should each be used?
Which function in C can be used to append a string to another string?
What is preprocessor with example?
What is an expression?
What does %2f mean in c?