Why cant i get out put from this

Joined
Aug 12, 2009
Messages
4
Reaction score
0
Code:
int main()
{
	
  	char *array;

	int i;
	array = calloc(3, sizeof(char*));
	for(i=0; i<3; i++)
	{
		printf("Enter a string:");
		scanf("%s", &array[i]);
	}

	
	for(i=0;i<3;i++)
	{
		printf("%s\n", array[i]);
	}
        return 0;
}

The problem is the last bit where i want to print array out?

Thanks
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

No members online now.

Forum statistics

Threads
474,263
Messages
2,571,064
Members
48,769
Latest member
Clifft

Latest Threads

Top