UNI_Python/_pruefung/pointers.cpp
2024-02-29 22:31:32 +01:00

8 lines
102 B
C++

#include "iostream"
int main() {
int a = 0;
int* x = &a;
std::cout << x << std::endl ;
}