You have already completed these exercises!
Do you want to take them again?
You completed the C Special Characters Exercises from W3Schools.com
Share on:
What is the correct way to include double quotes inside a string in C?
char txt[] = "The "Vikings" are here.";
char txt[] = "The \"Vikings\" are here.";
char txt[] = "The 'Vikings' are here.";
char txt[] = 'The "Vikings" are here.';