The keyword ________ is used in C to define a constant.
- constant
- define
- identifier
- value
In C, the keyword 'const' is used to define a constant. It is used to declare variables as constant, and their values cannot be changed after declaration.
Loading...
Related Quiz
- In a graphics rendering engine, you need to apply different transformations (e.g., rotate, scale, translate) to objects. How can function pointers be used to simplify the implementation?
- You're working on a C program that needs to manipulate and process data about a list of products in a store. Each product has several attributes like name, price, and quantity. What approach would you take to store and process this data efficiently?
- How does a double pointer differ from a single pointer?
- A ________ pointer is a pointer that still points to a memory location that has been deallocated.
- You're developing a database system and need to frequently update records. What file handling technique would you use to efficiently update specific records without reading the entire file?