#include <stdio.h> void main() { struct Employee { int Id; char Name[35]; }; struct Employee emp; emp.Id = 15; printf("%d", emp.Id); }
15
Previous Question Next Question
Your comments will be displayed only after manual approval.