09.05.2015, 05:12
This is just a quick one that I'm typing up now, it's nothing special and it's pretty average code.
Example:
Output:
pawn Код:
for(new i = 0; i < strlen(string); i++) if(string[i] != ' ') string[i] = '*';
pawn Код:
new hstr[20] = "Big Fat Black Woman";
for(new i = 0; i < strlen(hstr); i++) if(hstr[i] != ' ') hstr[i] = '*';
printf("%s", hstr);
Код:
Big Fat Black Woman *** *** ***** *****