i was trying to.. but I can't write a right code..

I can't find mistakes here..
I'm new to C that's why this is difficult for me
Code:
#include <stdio.h>
#include <string.h>
int main ()
{
char* string[3];
int j;
for(j=0;j<3;j++)
{
fgets(string[j], sizeof string[j], stdin);
}
for(j=0;j<3;j++)
{
printf("String number %d: \"%s\"\n", j, string[j]);
}
return 0;
}