Saravanan R
2013-07-10 04:37:45 UTC
int *p;
*p=45;
printf("%d",*p);
or
char *p;
p="hello";
printf("%s",p);
the both statements i tested work perfectly so why i need malloc?