Q&A Discussions
What is hexadecimal
3 Votes
2 AnswersOctal system
2 Votes
1 AnswerparseInt() method
1 Vote
2 AnswersPI to more than 15 digits
0 Votes
6 Answerswhy is it <=36?
1 Vote
2 Answers#include <iostream>
#include <bitset>
int main()
{
int myDecimalNumber;
std::cin >> myDecimalNumber;
std::string binary = std::bitset<8>(myDecimalNumber).to_string(); //to binary
std::cout<<binary<<"\n";
unsigned long decimal = std::bitset<8>(binary).to_long();
std::cout<<decimal<<"\n";
return 0;
}
2 Votes
5 AnswersHot today
GUI-Based Python code in Webpage
4 Votes
Convert Animated SVG to PNG
1 Votes
My Missing Courses
1 Votes
Font size
0 Votes
Mobile
0 Votes
Are '\0' and NULL the same?
1 Votes
Number addition
0 Votes
I need help here
1 Votes