Project 'noh0605/react-material' was moved to 'HyunjinNoh/react-material'. Please update any links and bookmarks that may still have the old path.
Select Git revision
-
HyunjinNoh authoredHyunjinNoh authored
std.c 207 B
#include<stdio.h>
int main(){
int a = 0; //무조건 초기화
fscanf(stdin, "%d", &a); //무조건 fscanf
fprintf(stdout, "%d\n", a); //무조건 fprintf
fprintf(stderr, "%d\n", -a);
return a;
}