Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- static
- string[22];
- string = "OLA BABY"; // string para testes
- for(new i = 0, j = strlen(string); i != j; ++i) // circuito em string, rápido
- {
- if(0x5B > string[ i ] > 0x40)
- {
- // caso o caracter string[i] for maisculo
- string += 32; // passar para minusculo (exemplo)
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement