Solved: 18 - Pointer Basics

This commit is contained in:
2026-08-15 17:20:47 +03:00
parent d9e08afbcb
commit 9676acc893
2 changed files with 18 additions and 5 deletions
@@ -2,7 +2,7 @@
namespace pointers {
[[nodiscard]] auto get_value(int* ptr) -> int;
[[nodiscard]] auto get_value(const int* ptr) -> int;
void set_value(int* ptr, int value);
[[nodiscard]] auto is_null(const int* ptr) -> bool;
void swap_via_pointers(int* a, int* b);