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.
It will be nice if you may share this link in any developer community or anywhere else, from where other developers may find this content. Thanks.
https://w3resource.com/c-programming-exercises/basic-declarations-and-expressions/c-programming-basic-exercises-3.php
- Weekly Trends and Language Statistics
- Weekly Trends and Language Statistics