
C Programming Control Flow Statements

Flashcard
•
Computers
•
University
•
Hard
Kayal Prag
FREE Resource
Student preview

8 questions
Show all answers
1.
FLASHCARD QUESTION
Front
What is the purpose of 'if statements' in C?
Back
'If statements' control the program flow based on a condition; they execute a code block when the expression evaluates to true.
2.
FLASHCARD QUESTION
Front
What is the syntax of an 'if statement' in C?
Back
if(condition) { // Statements to execute if condition is true }
3.
FLASHCARD QUESTION
Front
What will be the output of the following code? int i = 10; if (i > 15) { printf("10 is greater than 15"); } printf("I am Not");
Back
I am Not
4.
FLASHCARD QUESTION
Front
What is the difference between 'if statements' and 'if...else statements'?
Back
'If...else statements' execute a code block if the expression is true; otherwise, they execute the else statement code block.
5.
FLASHCARD QUESTION
Front
What is the syntax of 'if...else' in C?
Back
if (condition) { // Executes this block if condition is true } else { // Executes this block if condition is false }
6.
FLASHCARD QUESTION
Front
What will be the output of the following code? int i = 20; if (i < 20) { printf("i is smaller than 20"); } else printf("The number may be equal to 20");
Back
The number may be equal to 20
7.
FLASHCARD QUESTION
Front
What are 'if-else-if statements' used for?
Back
'If-else-if statements' are used when the user has to decide among multiple options.
8.
FLASHCARD QUESTION
Front
What is the syntax of an 'if-else-if ladder' in C?
Back
if (condition) statement; else if (condition) statement; ... else statement;
Similar Resources on Wayground
8 questions
Java CH4 - Control Statements EXIT

Flashcard
•
10th - 12th Grade
4 questions
If conditional statement

Flashcard
•
University
11 questions
AP CSA Unit 1 Review

Flashcard
•
12th Grade
10 questions
Estructura Condicionales

Flashcard
•
University
11 questions
Opening Meeting

Flashcard
•
Professional Development
10 questions
AP CSA Unit 1

Flashcard
•
12th Grade
10 questions
Types of Audits

Flashcard
•
University
12 questions
Maritime Terminology

Flashcard
•
University
Popular Resources on Wayground
10 questions
Lab Safety Procedures and Guidelines

Interactive video
•
6th - 10th Grade
10 questions
Nouns, nouns, nouns

Quiz
•
3rd Grade
10 questions
Appointment Passes Review

Quiz
•
6th - 8th Grade
25 questions
Multiplication Facts

Quiz
•
5th Grade
11 questions
All about me

Quiz
•
Professional Development
22 questions
Adding Integers

Quiz
•
6th Grade
15 questions
Subtracting Integers

Quiz
•
7th Grade
20 questions
Grammar Review

Quiz
•
6th - 9th Grade