Solved: 18 - Pointer Basics
This commit is contained in:
@@ -2,9 +2,22 @@
|
||||
|
||||
namespace pointers {
|
||||
|
||||
auto get_value(int* ptr) -> int { (void)ptr; return 0; }
|
||||
void set_value(int* ptr, int value) { (void)ptr; (void)value; }
|
||||
auto is_null(const int* ptr) -> bool { (void)ptr; return true; }
|
||||
void swap_via_pointers(int* a, int* b) { (void)a; (void)b; }
|
||||
auto get_value(const int* ptr) -> int {
|
||||
return *ptr;
|
||||
}
|
||||
|
||||
void set_value(int* ptr, int value) {
|
||||
*ptr = value;
|
||||
}
|
||||
|
||||
auto is_null(const int* ptr) -> bool {
|
||||
return ptr == nullptr;
|
||||
}
|
||||
|
||||
void swap_via_pointers(int* a, int* b) {
|
||||
const auto aux = *a;
|
||||
*a = *b;
|
||||
*b = aux;
|
||||
}
|
||||
|
||||
} // namespace pointers
|
||||
|
||||
Reference in New Issue
Block a user