w3resource

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:

C Programming: Print a block F using hash (#)

Flowchart:

C Programming Flowchart: Print a block F using hash

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:

C Programming: Print a big C

Flowchart:

C Programming Flowchart: Print a big C

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.



Follow us on Facebook and Twitter for latest update.