79510572

Date: 2025-03-15 03:10:13
Score: 1.5
Natty:
Report link

Strings in C are not written as "string", but as character arrays. If you want a string of fixed length, you can have something like char s[size];. If you want a string to not be constrained to that fixed length, you can just omit size, for example like char s[] = "string";.

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Andrew Wang