Skip to content
Snippets Groups Projects

Compare revisions

Changes are shown as if the source revision was being merged into the target revision. Learn more about comparing revisions.

Source

Select target project
No results found
Select Git revision
  • br_A
  • main
2 results

Target

Select target project
  • misonme/foss-2024-2
1 result
Select Git revision
  • br_A
  • main
2 results
Show changes
Commits on Source (3)
logs/
*.notes
*.o
a.out
#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
#lab 1126
#lab 1126