E
Emil Huseynli
//there is a test prog
//i declare here an array which size is 32MBytes((8*4194304)/(1024*1024))
//but when i run this prog i see,
//that memory usage doesn't increase by 32MBytes
//shouldn't this prog use 32MBytes when running??
#include <stdio.h>
int main()
{
long long int big_array[4194304];
getchar();
return 0;
}
//i declare here an array which size is 32MBytes((8*4194304)/(1024*1024))
//but when i run this prog i see,
//that memory usage doesn't increase by 32MBytes
//shouldn't this prog use 32MBytes when running??
#include <stdio.h>
int main()
{
long long int big_array[4194304];
getchar();
return 0;
}