Assuming that I have an variable like:
int n = 23;
it is possible split it, and convert to:
int x = n ?? ??; //2
int y = n ?? ??; //3
have no idea how to do this. Any help is very appreciated. Thanks in advance.
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
It is not necessary to use bit operators for this. In fact, since bit operators work with the binary representation of numbers, they’re generally no good for base 10 calculations.