2-D string implementation
i am new to c.anyone please help me why this code is not working
#include<stdio.h>
#include<stdlib.h>
#include<conio.h>
typedef struct{
char name[2][10];
}college ;
int main()
{
college student;
student.name={{"james"},
{"carter"}};
printf("%s %s ", student.name);
getch();
}
**