Skip to content

Instantly share code, notes, and snippets.

@Heppokoyuki
Created December 19, 2020 08:26
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Heppokoyuki/90540fac6a8f4334a940926d2c99ff59 to your computer and use it in GitHub Desktop.
Save Heppokoyuki/90540fac6a8f4334a940926d2c99ff59 to your computer and use it in GitHub Desktop.
nittc-procon advent calendar 2020
#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