The other day I decided to start a program that solves soduku puzzles on the account that I had just learned C++ and I thought it would be a good "out of the books" exercise. While writing some pseudocode I got bored and decided to run the following code to see what happens:
Code:
#include <iostream>
using namespace std;

int main(){
int sudoku[10][10];
cout<< sudoku;
cin.ignore();
return 0;
}
When I ran the program I got this:
0x22fde0

Can someone tell me what that means? The curiosity will kill me if I don't find out.