aboutsummaryrefslogtreecommitdiffstats
path: root/RawMemory.cpp
diff options
context:
space:
mode:
authorzedarider <ymherklotz@gmail.com>2016-02-26 21:32:14 +0000
committerzedarider <ymherklotz@gmail.com>2016-02-26 21:32:14 +0000
commit0e25cbb168e082e382cb5f92c9267f47e61ad227 (patch)
tree4008ef506d9987317b46a844789ac3b364e054c9 /RawMemory.cpp
parentf7a1296d353dea1f98b47d4baef87426ceadf6b5 (diff)
downloadimperial_2015-0e25cbb168e082e382cb5f92c9267f47e61ad227.tar.gz
imperial_2015-0e25cbb168e082e382cb5f92c9267f47e61ad227.zip
cleaning up files
Diffstat (limited to 'RawMemory.cpp')
-rw-r--r--RawMemory.cpp14
1 files changed, 0 insertions, 14 deletions
diff --git a/RawMemory.cpp b/RawMemory.cpp
deleted file mode 100644
index f6247f6..0000000
--- a/RawMemory.cpp
+++ /dev/null
@@ -1,14 +0,0 @@
-#include <iostream>
-#include <string>
-
-using namespace std;
-
-int main() {
- int a = 15;
- int* point = &a;
-
- cout << "a: " << a << ", &a: " << &a << ", point: "
- << point << ", &point: " << &point << ", *point: " <<
- *point << endl;
-
-} \ No newline at end of file