You have already completed these exercises!
Do you want to take them again?
You completed the C Strings Exercises from W3Schools.com
Share on:
What is the correct way to declare a string in C with the text 'Hello World'?
char greetings = "Hello World";
string greetings = "Hello World";
char greetings[] = "Hello World";
string greetings[] = {'H', 'e', 'l', 'l', 'o', ' ', 'W', 'o', 'r', 'l', 'd'};