Joined
Last Seen
0 Reputation Points
Unknown Quality Score
No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
0 Endorsements
Ranked #107.55K
~151 People Reached
Favorite Forums
Computer Science x 1
1 Posted Topic
Re: #include < stdio.h > #include < stdlib.h > #include < conio.h > void main() { int option; char sname[30]; int grade; menu: clrscr(); printf("\nStudent Profile Program"); printf("\n\n\n[1] Add Student Profile"); printf("\n\n[2] View Student Profile"); printf("\n\n[3] Exit Program"); printf("\n \n\nEnter option: "); scanf("%d", &option); switch(option) { case 1: { clrscr(); printf("\nAdding … |
The End.