int addDigits(int num) { int sum=0; while(num>9) { while(num) { sum+=(num%10); num/=10; } num=sum; sum=0; } return num; }
source not stored for this graph (policy: none)
nothing calls this directly
no outgoing calls
no test coverage detected