blob: 603b8e052b5507d4d746dfb19930c01debaceb72 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#include <iostream>
int main()
{
// define an integer variable named x
int x; // this variable is uninitialized because we haven't given it a value
// print the value of x to the screen
std::cout << x << '\n'; // who knows what we'll get, because x is uninitialized
return 0;
}
|