Scroll Progress Bar

Flash Cards


What is C programming known for?


Efficiency

What type of programming language is C?


Procedural

What is used to store the memory address of a variable in C?


Pointer

What does 'malloc' allocate in C?


Memory

What is the purpose of the 'const' keyword in C?


Constants

What tool is used to compile C source code?


Compiler

What tool is used for debugging C programs?


Debugger

What tool is used for version control in C development?


Git

What is a constant that cannot be changed in C?


Immutable

What keyword is used to define a constant in C?


const

What type of constant is represented by '12345' in C?


Integer

What type of constant is represented by '3.14' in C?


Floating

What is the purpose of using constants in C?


Consistency

What stores the memory address of a variable in C?


Pointer

What keyword is used to define constants in C?


const