If I have below string in C:
char s[]="Question";
Then I noted that both of the below prtintf prints the string correctly in terminal.
1.
printf("%s\n",s);
2.
printf("%s\n",&s);
Which is a correct way to print the string in C. If both of them are same, then what is the convention followed ? 1 or 2 ?
Thanks.