Char*MALLOC_CHAR(int n)
{
Char*x;
x=(char*)malloc(n*sizeof(char))
If(x==NULL)
{
printf("Insufficient memory \n");
exit(0);
}
return x;
}

Posted on by