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

26 lines
No EOL
258 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);
}
}
void helper(int i){
}
void pattern(int n){
print('*', n);
}
int main(){
return 0;
}