22 lines
320 B
C++
22 lines
320 B
C++
#include <iostream>
|
|
|
|
using namespace std;
|
|
|
|
int main() {
|
|
float myFloat;
|
|
myFloat = 25 / 2;
|
|
|
|
bool isGameOver = true;
|
|
|
|
char character = '#';
|
|
character = '!';
|
|
|
|
int counter = 1;
|
|
int *count;
|
|
|
|
count = &counter;
|
|
|
|
cout << "Value: " << *count << "\n";
|
|
cout << "Memory Address: " << count;
|
|
}
|