Thread
:
multiplying step by step
View Single Post
xpi0t0s
Mentor
19May2011,13:15
You could use the modulo operator:
Code:
int x=125 % 10; int y=(125/10) % 10;
results in x containing 5 and y 2.