#include <stdio.h> int main() { char **ptr = {"Welcome", "to", "Interview Mania"}; printf("%s", (ptr)[0]); return 0; }
Segmentation fault
Previous Question Next Question
Your comments will be displayed only after manual approval.