MIPI_BaseC_WebinarFRTK/07_Lecture07/02_pointer_use_p10.c
2024-11-13 09:22:28 +03:00

16 lines
785 B
C
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

#include <stdio.h>
int main() {
int x, y,
*ptr; // объявляем 3 переменные
ptr = NULL; // инициализируем указатель null, нулевым значением
//~ printf("x = %d y = %d ptr=%p\n",x,y,ptr);
x = -7;
ptr = &x; // адрес переменной х записываем в переменную ptr
y = *ptr; // Записываем в y значение на которое указывает указатель ptr
*ptr = 3; // Записываем в ячейку (х) на которую ссылается указатель ptr число 3
//std::cout << "x = " << x << " y = " << y; // вывод на экран x = 3 y = -7
printf("x = %d y = %d ptr=%p\n",x,y,ptr);
return 0;
}