Store names of n students into an array and then search for a particular name
#include
#include
#include
#include
void main()
{
int i,n,big;
int flag;
char name[100][25];
char t[25];
cout<<”Enter how many elements : “;
cin>>n;
for(i=0;in;i++)
...