#include <stdio.h> struct Employee { char name[20]; }; void main() { struct Employee emp[] = {"AJIT", "KUMAR"}; printf("%c", emp[0].name[1]); }
J
Previous Question Next Question
Your comments will be displayed only after manual approval.