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

8.5

parent f4997951
Branches
No related tags found
No related merge requests found
#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