From the course: Complete Guide to C Programming Foundations
Unlock the full course today
Join today to access over 24,500 courses taught by industry experts.
Challenge: Repeat some text - C Tutorial
From the course: Complete Guide to C Programming Foundations
Challenge: Repeat some text
(bright music) - [Instructor] For this challenge, use Exercise File 03-09-challenge1.c as a base where the user is prompted for integer input. Your task is to write a loop that draws a line of hyphen characters. User input sets the line length. Each time the loop repeats, output a single hyphen character based on the value input. For example, if the user types in 50, the program generates 50 hyphens a line across the text screen. Use the putchar() function to output the hyphen character. You are to write two solutions to this challenge. The first solution uses a for loop. The second solution performs the same task, but with a while loop. This challenge should take about 15 minutes to complete.
Contents
-
-
-
-
-
-
Making a decision3m 25s
-
(Locked)
Exploring the possibilities2m 53s
-
(Locked)
Using the ternary operator3m
-
Working with the switch-case structure4m
-
(Locked)
Challenge: Select an item28s
-
(Locked)
Solution: Select an item1m 45s
-
Creating a for loop3m 36s
-
(Locked)
Setting up a while loop2m 58s
-
(Locked)
Challenge: Repeat some text51s
-
(Locked)
Solution: Repeat some text1m 51s
-
(Locked)
Nesting loops1m 59s
-
(Locked)
Breaking out of a loop3m 16s
-
(Locked)
Avoiding the goto keyword1m 33s
-
(Locked)
Chapter challenge: Interpreting commands2m 26s
-
(Locked)
Chapter solution: Interpreting commands3m 55s
-
-
-
-
-
-
-
-