The ________ keyword in C suggests to the compiler to use a CPU register for the variable to optimize access time.
- const
- register
- static
- volatile
The 'register' keyword in C suggests to the compiler to use a CPU register for the variable to optimize access time, which can lead to faster variable access.
Loading...
Related Quiz
- In a program that processes large datasets, you notice that reading the data from a file is a performance bottleneck. Which file handling functions could help improve the performance?
- When a floating-point number is declared using the ________ keyword, it allows for more precision than a regular float.
- What is the time complexity of the bubble sort algorithm in the best case?
- Function pointers in C can be stored in an array, creating a(n) ________ of function pointers.
- What is the primary difference between the scope and the lifetime of a variable?