I'm a beginner in C programming and I can't figure out what the difference is between these two expressions (with and without curly brackets) as follows.
char s1[] = {"The course of true love never did run smooth"};
char s1[] = "The course of true love never did run smooth";
I try to test by using
printf("%c", s1[0]), and
printf("%s", s1)
Both giving me same answer.