Hi, sorry for this noobish question :D
when you declare an array: int array[50], does the compiler allocate the
space(hence clean up the (unused)data, or it just create a pointer start and
end? how if you dont declare the space: int[] array; ?
how if for example i havent fill the array and try to call array[26]? will it
return an error or a 'false' value?
thanks :)
