-
Notifications
You must be signed in to change notification settings - Fork 144
Expand file tree
/
Copy pathpreproc.c
More file actions
33 lines (30 loc) · 1.18 KB
/
preproc.c
File metadata and controls
33 lines (30 loc) · 1.18 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* preproc.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: emil_1189 <se_aliev@mail.ru> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2021/07/07 14:12:09 by emil_118 #+# #+# */
/* Updated: 2021/07/07 14:13:13 by emil_118 ### ########.fr */
/* */
/* ************************************************************************** */
#include <stdio.h>
#include <stdlib.h>
#define Anton
#define width 60
#ifdef Anton
#define myMult(a, b) (a)*(b)
#endif
#undef myMult
int main()
{
#if width > 50
printf("%d\n", myMult(5+5,7));
#elif width > 20
printf("AAAAAAAAAAAA!!!");
#else
printf("Где мульт!!\n");
#endif //Anton
return 0;
}