-
Notifications
You must be signed in to change notification settings - Fork 280
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
1lab #870
1lab #870
Conversation
|
Снова ошибки. |
Странно, запуская тесты на компьютере все проходит... |
Павел Михайлович, здравствуйте, извините, что беспокою по глупой теме, но может я что-то не понимаю... |
Выполнить ctest или make test. |
Сборка не проходит. |
Lab1C/lab1.c
Outdated
@@ -1,40 +1,146 @@ | |||
#include "../LibraryC/array.h" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Путь надо прописать в CMakeLists.txt, а здесь писать include без пути.
LibraryC/array.h
Outdated
#include <stdint.h> | ||
|
||
// Non-resizeable array | ||
// Stores pointer to custom user data | ||
typedef uintptr_t Data; | ||
typedef void* Data; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Лучше оставить uintptr_t. При использовании такого массива с числами, будет проще с ним работать. Добавятся только приведения типов в самой библиотеке.
Принято.
Реализовать интерпретатор подмножества языка Befunge: https://en.wikipedia.org/wiki/Befunge
Входные данные
Выходные данные
Входные данные
Выходные данные
|
Сделал основное задание и первое задание из двух