Answer Posted / p govind rao
convert a decimal to binary we should use showbit()
function or a normal program to convert decimal to binary .
showbit(7) gives 000000000000111 .
| Is This Answer Correct ? | 62 Yes | 18 No |
Post New Answer View All Answers
What is #ifdef ? What is its application?
What is the 'named constructor idiom'?
Explain what is a pragma?
Differentiate between null and void pointers.
What are shell structures used for?
why to assign a pointer to null sometimes??how can a pointer we declare get assigned with a garbage value by default???
Why are all header files not declared in every c program?
What does node * mean?
Is it possible to have a function as a parameter in another function?
How do you list a file’s date and time?
What are the output(s) for the following ? #include char *f() {char *s=malloc(8); strcpy(s,"goodbye")} main() { char *f(); printf("%c",*f()='A'); }
What is pass by value in c?
What is a substring in c?
Does free set pointer to null?
Differentiate between ordinary variable and pointer in c.