Write a C program to print the Letter F using hash (#)

Write a C program to print the Letter F using hash (#)

 

#include <stdio.h> 
 int main() 
 {
    printf("######\n");
    printf("#\n");
    printf("#\n");
    printf("#####\n");
    printf("#\n");
    printf("#\n");
    printf("#\n");

    return(0);
}

Result

Write a C program to print the Letter F using hash
Write a C program to print the Letter F using hash

Leave a Comment