fork download
  1. #include <stdio.h>
  2. int rec(int num){
  3. return (num) ? num%10 + rec(num/10):0;
  4. }
  5. int main(){
  6. printf("%d",rec(4567));
  7. }
  8.  
Success #stdin #stdout 0s 5440KB
stdin
Standard input is empty
stdout
22