Computer Science, asked by mounika7600, 1 month ago

how to print our name for 10 times in c

Answers

Answered by vedesai5
0

Answer:

you can print your name for 10 times in C by pressing CTRL+C key.

Answered by vk979416
3

Explanation:

include<stdio.h>

void rec(int i)

if(i<=10)

{

printf("%02d omkar\n",i);

rec(i+1);

}

int main()

Similar questions