Scroll Progress Bar

Flash Cards


What function in C is used to find the first occurrence of a substring in a string?


strstr

What is an array of strings in C?


Collection

How do you declare an array of strings in C?


Declaration

How do you initialize an array of strings in C?


Initialization

How can you access individual characters in an array of strings in C?


Indexing

What is the significance of the null character in C strings?


Termination

What is a structure in C?


User-defined

What does a structure group together?


Variables

What is a member of a structure called?


Field

What is used to access structure members?


Dot

Can structures contain members of different types?


Yes

What is a nested structure in C?


Structure

What is the purpose of nesting structures in C?


Composition

How do you access members of a nested structure in C?


Dot

What is an enum in C?


Enumeration