adding memory example

This commit is contained in:
Jidong Xiao
2024-01-26 13:40:18 -05:00
parent 696aafc4a2
commit 93fa178d97

View File

@@ -0,0 +1,25 @@
#include <iostream>
void func1() {
int a = 42;
std::cout << "a: " << a << std::endl;
}
void func2() {
int* b = new int(42);
std::cout << "b: " << *b << std::endl;
delete b;
}
int c = 42;
static int d = 42;
int main() {
func1();
func2();
std::cout << "c: " << c << std::endl;
std::cout << "d: " << d << std::endl;
return 0;
}