1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 | #include <conio.h> #include <stdio.h> #include <stdlib.h> int main(void) { char password[10]; int i; system("cls"); printf("Æнº¿öµå¸¦ ÀÔ·ÂÇϽÿÀ: "); for (i = 0; i < 8; i++) { password[i] = _getch(); printf("*"); } password[i] = '\0'; printf("\n"); printf("ÀÔ·ÂµÈ Æнº¿öµå´Â ´ÙÀ½°ú °°½À´Ï´Ù: "); printf("%s\n", password); _getch(); return 0; } | cs |