Hello
Can someone tell me what this sort algorithm is called.?
And if possible a little bit of information about it...
void record_search(struct CdRecords cdDB[])
{
system("CLS");
int i;
char name[20];
printf("Enter Name:");
scanf("%s", name);
for(i = 0;i<datasize;i++)
{
if((strcmp(name,cdDB[i].Artist))==0)
{
ENTER DATA TO BE DISPLAYED
}
}
printf("Press Enter To Continue");
// fflush(stdin);
getch();
}