#include <stdio.h> void main() { char *ptr = calloc(200, 2); ptr = "Interview Mania"; printf("%s\n", ptr); }
Interview Mania
Previous Question Next Question
Your comments will be displayed only after manual approval.