KwickClips C++ · 41 sec · free
What marks the end of a C string?
Short answer. The null character \0.
How many boxes for a 6-letter word?
7.
"Riya" in memory
| Index | Holds |
|---|---|
| 0 to 3 | R, i, y, a |
| 4 | '\0' |
Remember
| Strings end with '\0' |
| Size = letters + 1 |
Riya has four letters. Why five boxes? A C string is a char array. Boxes zero to three hold the letters. Box four holds the null character, which marks the end. Remember. Every string ends with null. Size is letters plus one.
This clip is from the full lesson: Strings in C — 7 minutes, with the tables, the quick answers and the whole lesson in text.
Useful for: Programming All levels C, Programming All levels C
More KwickClips from this lesson
Voice-over is AI-generated; the script is written and checked by Kajal Ma'am. Confirm anything you plan around against your official board document. We never ask for a password or an OTP.




![C code while (s[n]) n++; for "Surat", output 5.](/images/learn/clips/C11-R4.webp)