Skip to content
Snippets Groups Projects
Commit c2bf08c7 authored by 이장원's avatar 이장원
Browse files

Init

parent 777d5743
No related branches found
No related tags found
No related merge requests found
-200
Hello, World -200
Error: It is negative
# battle_c
## Jangwon Lee - Team 1
실전코딩2 실습
## printf
### stdio.h
* stderr, stdout, stdin에 대해서 배움
\ No newline at end of file
#include "func.h"
int func1(int a)
{
return (a * 10);
}
int func2(int a)
{
return (a * 2);
}
\ No newline at end of file
#pragma once
#define DF(a) ((a)*(a))
extern int func1(int x);
\ No newline at end of file
#include <stdio.h>
#include "func.h"
int func_name_or_id()
{
#ifdef PRINT_ID
printf("201920756");
return 0;
#else
printf("");
return 1;
#endif
}
int main()
{
func_name_or_id();
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment