#include <stdio.h> struct Employee { int id; char emp_name[25]; }; void main() { struct Employee Emp; Emp.id = 101; printf("Ajit Kumar Gupta"); }
Ajit Kumar Gupta
Previous Question Next Question
Your comments will be displayed only after manual approval.