/*
* Please try to answer this question. There is no time bound.
* The following C program segfaults of IA-64,
* but works fine on IA-32.
*/
int main()
{
int* p;
p = (int*)malloc(sizeof(int));
*p = 10;
return 0;
}
>/* Why does it happen so? */
/* Can any body explain to me this? I got this prob. from one of my friends. */