Learn C ProgrammingLearn ProgrammingPrograms On Escape SequencesResources

013. Print the following output in C Language

By September 18, 2012 August 8th, 2019 4 Comments

#include<stdio.h>
#include<conio.h>  
 main()
 {
  clrscr();
  printf("\n");
  printf("   /\\        \n");
  printf("  //\\\\      \n");
  printf(" ///\\\\\\    \n");
  printf("////\\\\\\\\  \n");
  printf("  |||         \n");
  printf("  |||         \n");
  getch();
 }

4 Comments

Leave a Reply

DEMO01