C Exercises: Print a block F and big C
C Basic Declarations and Expressions: Exercise-3 with Solution
Write a C program to print a block F using the hash (#), where the F has a height of six characters and width of five and four characters. And also print a very large 'C'.
Block of 'F':
C Code:
#include <stdio.h>
int main()
{
// Print a line of hashes
printf("######\n");
// Print a single hash
printf("#\n");
// Print a single hash
printf("#\n");
// Print a line of hashes
printf("#####\n");
// Print a single hash
printf("#\n");
// Print a single hash
printf("#\n");
// Print a single hash
printf("#\n");
return(0);
}
Sample Output:
###### # # ##### # # #
Pictorial Presentation:

Flowchart:

Print a big 'C':
C Code:
#include <stdio.h>
int main()
{
// Print top line of pattern
printf(" ######\n");
// Print second line of pattern
printf(" ## ##\n");
// Print lines 3 to 7 of pattern
printf(" #\n");
printf(" #\n");
printf(" #\n");
printf(" #\n");
printf(" #\n");
// Print bottom line of pattern
printf(" ## ##\n");
// Print last line of pattern
printf(" ######\n");
return(0);
}
Sample Output:
###### ## ## # # # # # ## ## ######
Pictorial Presentation:

Flowchart:

C Programming Code Editor:
Previous: Write a C program to get the C version you are using.
Next: Write a C program to print the following characters in a reverse way.
What is the difficulty level of this exercise?
Test your Programming skills with w3resource's quiz.
- Weekly Trends
- Python Interview Questions and Answers: Comprehensive Guide
- Scala Exercises, Practice, Solution
- Kotlin Exercises practice with solution
- MongoDB Exercises, Practice, Solution
- SQL Exercises, Practice, Solution - JOINS
- Java Basic Programming Exercises
- SQL Subqueries
- Adventureworks Database Exercises
- C# Sharp Basic Exercises
- SQL COUNT() with distinct
- JavaScript String Exercises
- JavaScript HTML Form Validation
- Java Collection Exercises
- SQL COUNT() function
- SQL Inner Join