Asked by Abagail Marie Minnick on Apr 24, 2024

verifed

Verified

In C, a string is stored as a ____ array of characters.

A) one-dimensional
B) two-dimensional
C) static
D) global

Array of Characters

A sequence of characters, typically used to store strings in programming languages.

  • Comprehend the fundamental principles and attributes of string literals in C.
verifed

Verified Answer

DP
Digvijay Patil8 days ago
Final Answer :
A
Explanation :
In C, a string is represented as a one-dimensional array of characters, ending with a null character '\0' to denote the end of the string.