Skip to content
Snippets Groups Projects
Commit e4a00e19 authored by wkddnjs3268's avatar wkddnjs3268
Browse files

0805

parent aad92629
No related branches found
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"
#define PRINT_ID
int func_name_or_id()
{
#ifdef PRINT_ID
printf("201920756");
return 0;
#else
printf("");
return 1;
#endif
}
int main()
{
func_name_or_id();
}
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment