The keyword ________ is used to define a structure in C.
- allocate
- define
- struct
- typedef
In C, the "struct" keyword is used to define a structure. Structures are used to group related data members under a single name.
Loading...
Related Quiz
- What is the primary cause of memory leaks in a C program?
- How do you declare a pointer to an integer in C?
- What happens if the fopen function fails to open the specified file?
- In what scenario would using a nested structure be beneficial?
- You're developing a program that needs to behave differently based on user input provided at runtime. How can command line arguments be utilized for this purpose?