Created
December 19, 2020 08:26
-
-
Save Heppokoyuki/90540fac6a8f4334a940926d2c99ff59 to your computer and use it in GitHub Desktop.
nittc-procon advent calendar 2020
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <stdio.h> | |
int | |
main(void) | |
{ | |
short v; | |
int data = 80; | |
printf("please input number: "); | |
scanf("%d", &v); | |
printf("v: %d, data: %d\n", v, data); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment