I am wondering why the following code will crash?
My environment is ubuntu64,gcc 4.8.1
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <unistd.h>
#define SIZE 1024*1024*1024
int main()
{
    printf("%ld,%ld,%ld\n",sizeof(int),sizeof(long),sizeof(size_t));//output 4,8,8
    printf("%ld\n",SIZE); //output 1073741824
    int *p = (int*)malloc(SIZE);
    if(!p){
            perror("malloc");
            exit(1);
    }
    memset(p,0,SIZE);    //this works fine
    size_t i=0;   
    for(;i<SIZE;++i){
            p[i] = 10;  //gdb shows when crashed i = 268436476
    }    
}
 
     
     
     
    