Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

1 #3

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open

1 #3

Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -699,6 +699,7 @@ Git и GitHub настроены на взаимодействие, потому
В открывшмся документе введите команду `/Ткни` - это команда поиска по ключевому слову `Ткни`, и нажмине `Enter`. Вас переместит на строчку спойлера `Ткни сюда и увидишь список`. На следующих строчках вы увидете список тех, кто уже проделал все пункты ниже до вас и отплагодарил автора статья, т.е. меня. Создаёте новую строчку со следующим порядковым номером и впишите туда свой `username` GitHub, чтобы тоже внести свой вклад. У меня это номер 1. А какой у тебя?)

![Contributor](https://i.ibb.co/pysHnVP/Contributor.png)
1)

Затем вводим команду `:wq` - сохраняем и закрываем vim. Теперь нам необходимо проиндексироваь изменения файла в git. Для этого вводим следующую команду в терминал:

Expand Down
33 changes: 33 additions & 0 deletions preproc.c
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* preproc.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: emil_1189 <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* 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;
}