im a first year student of computer science course. our teacher teach us c++ program and i cant understand it well.now my teacher want us to make a menu system or payroll system.. the format she teach us is like this
1.) write a program that will accept users input name and display the inputed name in the browser.
#include<stdio.h>
#include<conio.h>
void main()
{
char name[15};
clrscr();
printf("Enter your name");
scanf("%s",&name);
printf("%s",name);
getch();
}
this one simple but now how to make a menu or payroll system?