Skip to content

Instantly share code, notes, and snippets.

@btechmag
Created April 15, 2021 11:07
Show Gist options
  • Save btechmag/538d7c2a946babdf1eb84033058d8804 to your computer and use it in GitHub Desktop.
Save btechmag/538d7c2a946babdf1eb84033058d8804 to your computer and use it in GitHub Desktop.
C program to display 'F 'using (#). also display a big 'C'.
#include<stdio.h>
main()
{
printf("\n\n\n######\n");
printf("#\n");
printf("#\n");
printf("#####\n");
printf("#\n");
printf("#\n");
printf("#\n");
printf("\n\n\n\n######\n");
printf("## ##\n");
printf("#\n");
printf("#\n");
printf("#\n");
printf("#\n");
printf("#\n");
printf("## ##\n");
printf("######\n");
getch();
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment