Skip to content
Snippets Groups Projects
Commit ddfa8129 authored by Hwanyong Lee's avatar Hwanyong Lee
Browse files

lab01 add

parent e8ae5cbc
No related branches found
No related tags found
No related merge requests found
File added
STDERR: 12345
STDOUT: 12345
STDERR: 999
#include <stdio.h>
int main()
{
printf("Hello World!\n");
return 0;
}
#include <stdio.h>
int main()
{
int a=0;
fscanf(stdin,"%d",&a);
fprintf(stdout,"STDOUT: %d\n", a);
fprintf(stderr,"STDERR: %d\n", a);
return a;
}
999
STDOUT: 999
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment