Scroll Progress Bar

Flash Cards


What is the escape sequence for a newline character?


Newline

What function in C is used to convert a character to lowercase?


tolower

What library is used for math functions in C?


math.h

What function rounds a floating-point number to the nearest integer in C?


round

What function calculates the absolute value of a number in C?


fabs

What function calculates the square root of a number in C?


sqrt

What function returns the smallest integer greater than or equal to a number in C?


ceil

What is a loop that repeats a block of code while a condition is true?


While

What loop is guaranteed to execute at least once?


Do-While

What loop is used for iterating over a range of values a fixed number of times?


For

What statement is used to exit a loop prematurely?


Break

What statement is used to skip the current iteration and continue to the next in a loop?


Continue

What is a for-loop in C?


Iteration

What is the initialization part of a for-loop responsible for?


Setup

What does the condition part of a for-loop determine?


Termination