how to print our name for 10 times in c
Answers
Answered by
0
Answer:
you can print your name for 10 times in C by pressing CTRL+C key.
Answered by
3
Explanation:
include<stdio.h>
void rec(int i)
if(i<=10)
{
printf("%02d omkar\n",i);
rec(i+1);
}
int main()
Similar questions