#include <stdio.h> int main() { char str[12][16] = {"Ajit", "Kumar"}; printf("%s", *str + 0); return 0; }
Ajit
Previous Question Next Question
Your comments will be displayed only after manual approval.