Skip to content

Commit 9acefe4

Browse files
committed
Update README.md
1 parent 2697583 commit 9acefe4

File tree

1 file changed

+21
-1
lines changed

1 file changed

+21
-1
lines changed

0x0D-preprocessor/README.md

+21-1
Original file line numberDiff line numberDiff line change
@@ -1 +1,21 @@
1-
# Preprocessor
1+
# 0x0D. C - Preprocessor
2+
3+
## About
4+
5+
- What are macros and how to use them
6+
- What are the most common predefined macros
7+
- How to include guard your header files
8+
9+
## Files & Descriptions
10+
11+
[0-object_like_macro.h](https://github.com/Jenni-Foued/holbertonschool-low_level_programming/tree/master/0x0D-preprocessor/0-object_like_macro.h) a header file that defines a macro named SIZE as an abbreviation for the token 1024
12+
13+
[1-pi.h](https://github.com/Jenni-Foued/holbertonschool-low_level_programming/tree/master/0x0D-preprocessor/1-pi.h) a header file that defines a macro named PI as an abbreviation for the token 3.14159265359
14+
15+
[2-main.c](https://github.com/Jenni-Foued/holbertonschool-low_level_programming/tree/master/0x0D-preprocessor/2-main.c) a program that prints the name of the file it was compiled from, followed by a new line
16+
17+
[3-function_like_macro.h](https://github.com/Jenni-Foued/holbertonschool-low_level_programming/tree/master/0x0D-preprocessor/3-function_like_macro.h) a function-like macro ABS(x) that computes the absolute value of a number x
18+
19+
[4-sum.h](https://github.com/Jenni-Foued/holbertonschool-low_level_programming/tree/master/0x0D-preprocessor/4-sum.h) a function-like macro SUM(x, y) that computes the sum of the numbers x and y
20+
21+
[101-preprocessor_abuse.c] a program that prints a string `Hello, Holberton\n`

0 commit comments

Comments
 (0)