This commit is contained in:
unlockable
2022-09-30 16:16:36 +08:00
parent 2f39d88778
commit aedf18a247
4 changed files with 58 additions and 0 deletions

9
03/Optional.c Normal file
View File

@@ -0,0 +1,9 @@
#include <stdio.h>
int main() {
char number[12];
printf("Your phone number is?\n");
scanf("%s", number);
printf("Your phone number is %s", number);
return 0;
}