Program stores strings as string arrays. Strings can be names, addresses, etc. • Program shows a selection screen that allows the user to enter strings (max. of 16, strings have a maximum of 128 characters), remove a string from the database, view strings in database, search a string, and quit the program.
#include <stdio.h>
#include <conio.h>
#include <stdlib.h>
void clearscreen()
{
system("cls");
}
int main()
{
int b1,b,c;
char data[20];
int number,a;
do{
clearscreen();
printf("How many data do you want to store ");
scanf("%d",&number);
for(a=1;a<=number;a++)
{
printf("Input your data %d_No: ",a);
scanf("%s",&data[a]);
}
printf("What action do you want to do\n [1]Remove data\n [2]View data\n [3]Search data\n[4] Quit");
scanf("%d",&b1);
switch(b1)
{
case 1:
clearscreen();
break;
case 2:
for(c=1;c=number;c++)
{
printf("%d:%s",a,data[a]);
}
break;
case 3:
break;
case 4:
return 0;
break;
}
printf("\nDO you want to continue\n[1] YES\n [2] No ");
scanf("%d",&b);
if (b==2)
{
return 0;
}
} while(b !=2);
}
The program is running but when I switch to 2 It cant read the int number, and char data why is it? and what should I do?
<conio.h>is not standard), and learn how to use your debugger, then use it step by step. – Basile Starynkevitch Oct 14 '12 at 10:48for(c=1; c=number; c++)- should it be <= or something? – John3136 Oct 14 '12 at 10:49