Warning: implode(): Invalid arguments passed in /www/wwwroot/jobquiz.info/mdiscuss.php on line 336 Point out the error in the following program. #include<stdio.h> #include<stdlib.h> int main() { char ptr; ptr = (char)malloc(30); strcpy(ptr, "RAM"); printf("%s", ptr); free(ptr); return 0; } ?->(Show Answer!)
1. Point out the error in the following program. #include<stdio.h> #include<stdlib.h> int main() { char ptr; ptr = (char)malloc(30); strcpy(ptr, "RAM"); printf("%s", ptr); free(ptr); return 0; }