UNI_Python/_pruefung/pointers.cpp

8 lines
102 B
C++
Raw Normal View History

2024-02-29 22:31:32 +01:00
#include "iostream"
int main() {
int a = 0;
int* x = &a;
std::cout << x << std::endl ;
}