162 views
0 votes
0 votes
Since in a machine we always store numbers in binary then why can't we directly print the binary number itself using any inbuilt function, why do we have to write a separate code for it every time?

Please log in or register to answer this question.

Related questions

1 votes
1 votes
0 answers
2
RahulVerma3 asked 6 days ago
78 views
My question is that can we use command line arguments without use of main function's parameters argc and *argv?
0 votes
0 votes
0 answers
3
RahulVerma3 asked Mar 16
104 views
I have a question that can we use command line arguments without main function arguments?int main(int argc, char argv){}
0 votes
0 votes
1 answer
4
SSR17 asked Feb 29
208 views
#include <stdio.h int main() { int i = -1; int x = (unsigned char)i; printf("%d", x); return 0; }output is 255 , but please explain how