Skip to content
Snippets Groups Projects
Commit b60d6c06 authored by Miso Park's avatar Miso Park
Browse files

1126

parent a76ef29a
Branches
No related tags found
No related merge requests found
#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;
}
#lab 1126
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment