I will directly get to the point.
int a,b,c, Number;
a=0;
b=1;
c=2;
Number = (a*100)+(b*10)+(c*1);
printf("%d", Number);
Result is 12.
I also have another variable that which is equal to exactly 12.
int number2 = 12;
Now I have to check the difference between them. How do I do that?