cplusplus
.com
TUTORIALS
REFERENCE
ARTICLES
FORUM
C++
Tutorials
Reference
Articles
Forum
Forum
Beginners
Windows Programming
UNIX/Linux Programming
General C++ Programming
Lounge
Jobs
Forum
Beginners
why?
why?
Dec 13, 2010 at 3:29am UTC
jimmy5023
(159)
I was going through tutorials, i thought intbilly [2][2]; = 2d array of 2 x 2, but when i compile it, it gives me 00D7138 which i don't know what is that.
#include <iostream>
using namespace std;
int billy [2][2];
int main ()
{
cout<<billy<<endl;
}
Dec 13, 2010 at 4:59am UTC
ne555
(10692)
cout<<billy<<endl;
What is the output that you were expecting?
It gives you the memory position where your array starts
Topic archived. No new replies allowed.