Scroll Progress Bar

Flash Cards


What is a variable that holds the memory address of a function in C?


Function pointer

What is the keyword for declaring a variable that won't change its value in C?


const

What keyword is used for creating a loop in C that continues indefinitely until a condition is met?


while

What keyword is used to exit a loop prematurely in C?


break

Which keyword is used to define a new data type in C?


typedef

What keyword is used to include a header file in C?


#include

What is the rule for ending statements in C?


Semicolon

What rule defines the order in which operators are evaluated in expressions?


Precedence

What rule enforces that variable names in C are case-sensitive?


Case

What data type is used for integers in C?


int

What data type is used for single-precision floating-point numbers in C?


float

What data type is used for double-precision floating-point numbers in C?


double

What data type is used for characters in C?


char

What data type is used for storing true or false values in C?


bool

What is the C library function for finding the length of a string?


strlen