Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <stdio.h>
- #include <stdlib.h>
- #include <locale.h>
- #include <string.h>
- #include <conio.h>
- int main (void){
- setlocale(LC_ALL,"PORTUGUESE");
- char senha[99];
- int i,i2;
- for(i=0;i<=99;i++){
- senha=getch();
- if(senha[i]=='\x0D')
- break;
- printf("*");
- //printf("Sua senha é: %c",senha[i]);
- }
- //for(i=0;strlen(senha[i]));i++)
- //printf("Sua senha é: %c",senha[i]);
- getch();
- return 0;
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement