In C, a ________ is used to store a sequence of characters.
- array
- function
- string
- variable
In C, a 'string' is used to store a sequence of characters. A string is an array of characters, typically represented as an array of 'char' data type.
Loading...
Related Quiz
- What is the advantage of using function pointers in C for implementing callback functions?
- What is the significance of using pointers to functions in C?
- When using pointers in a C program, what does the 'dereferencing' operation do?
- How do you declare a pointer variable in C?
- What is a potential risk of using the gets() function for reading strings in C?