#include int main(int argc, char* argv[] ) { int i = 0; // Integer // i is a number that you can add, subtract, etc int a[5]; // Array of integers // a is the LOCATION (address) of the first elem of the array i = a; // WARNIG !! Too different !!! printf("i = %d\n", i); }