Answers

Question and Answer:

  Home  Basic C++ Syntax

⟩ What is C strings syntax?

Strings are arrays of chars. String literals are words surrounded by double quotation marks.

"This is a static string"

To declare a string of 49 letters, you would want to say:

char string[50];

 178 views

More Questions for you: