main
Jan-Niclas Loosen 7 months ago
commit 34644c4bcc

@ -0,0 +1 @@
workspace.xml

@ -60,7 +60,7 @@ int main() {
std::cout << i << " ";
}
}
std::cout << std::endl;
std::cout << std::endl;
return 0;
}

@ -0,0 +1,13 @@
#include <iostream>
int main() {
int x = 2;
int* y = &x;
std::cout << x << std::endl;
std::cout << &x << std::endl;
std::cout << y << std::endl;
std::cout << *y << std::endl;
return 0;
}

Binary file not shown.
Loading…
Cancel
Save