#include<iostream>
#include<stdio.h>
using namespace std;
int main()
{
for(int i=0;i<10;i++)
{
char *a=new char[10];
printf("%u\n",a);
}
return 0;
}
This is the output that i got
5377864
5377888
5377912
5377936
5377960
5377984
5378008
5378032
5378056
5378080
why the memory is increased in size of 24?