Find the output of the following program
int value;
func (int num){
int a, b;
a = num % 12;
b = (num -a)/ 10;
value = value + a;
if (b!= 0 )
func(b):
else
return (value);
}
main() {
int a;
a = func (1000);
printf ("\n%d", a) is
}
Answers
Answered by
3
12345678901234567890
Similar questions