+ 4
[ASSIGNMENT] Write a program which shows following pattern:
I IN IND INDI INDIA INDIA INDI IND IN I
5 Answers
+ 4
Donna great work
+ 3
https://code.sololearn.com/c3dl3nnd3RZ5/#c
z(char*f,int l){for(int i=0;i<l;i++){printf("%c",f[i]);}printf("\n");}int main(){char i[6]="INDIA";for(int b=1;b<11;b++){z(i,b*(1-(b/6))+(b/6)*(11-b));}return 0;}
Obfuscated for fun.
+ 3
Trippie-ippie I feel you are fishing (not phishing) for something with your replies. The best crackers are good coders, and often excellent psychologists (for social engineering).
+ 1
https://code.sololearn.com/c9D8lVfZLDUX/?ref=app
two different ways to go showed here