Store value into two dimensional char array and output it
#include <stdio.h>
int main(void)
{ char text[10][80]; int i;
for(i = 0; i < 10; i++) {
printf("some string for index %d: ", i + 1);
gets(text[ i ]);
}
do {
printf("Enter number of string (1 - 10) : ");
scanf("%d", &i);
i--; /* adjust value to match array index */ if(i >= 0 && i < 10)
printf("%s\n", text[i]);
} while(i>=0);