286 views
1 votes
1 votes

how p3 is decidable?

Please log in or register to answer this question.

Related questions

0 votes
0 votes
1 answer
4
srestha asked Jan 27, 2019
266 views
void foo(int n) { if(n==1) printf("#"); for(i=0;i<n;i++) foo(n-1); }Number of time # will be printed , when foo(7) is called_________