dotfiles/.config/Code/User/History/-50ff426c/S1a9.cpp
RafayAhmad7548 ab03d5f10c test
2024-06-16 18:53:25 +05:00

20 lines
No EOL
193 B
C++

/*
Rafay Ahmad
23I-2526
*/
#include <iostream>
using namespace std;
void print(char c, int i){
if(i>=0){
cout<<c;
print(c, i-1);
}
}
int main(){
return 0;
}