I need to find whether a number is divisible by 3 without using %, / or *. The hint given was to use atoi() function. Any
%
/
*
atoi()
A number is divisible by 3 if all the digits in the number when added gives a result 3, 6 or 9. For example 3693 is divisible by 3 as 3+6+9+3 = 21 and 2+1=3 and 3 is divisible by 3.