26 lines
No EOL
244 B
C++
26 lines
No EOL
244 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){
|
|
|
|
}
|
|
|
|
int main(){
|
|
|
|
|
|
|
|
return 0;
|
|
} |