Computer Science, asked by Apur27, 7 months ago

WAP to print 1 to 4 number without using loop

Answers

Answered by youthicon103
2

Answer:

void print (int);

int main(){int n;

scanf("%d",&n);

void print(int n) {static int c=1,

if ( c==n+1) return;

print("%d/n",c); c++;print(n);}

Explanation:

hope it helps you mark me brainiest

Similar questions