Sunday, August 21, 2016

Printing formatted output using ASCII value.


//Printing formatted output using ASCII value.

#include<stdio.h>
void main()
{
  int i;

  for(i=0; i<10; i++)
     printf("%c",174);
  printf(" HELLO STUDENTS ");
  for(i=0; i<10; i++)
     printf("%c",175);
           
  printf("\n\n");
           
  for(i=0; i<10; i++)
     printf("%c",176);
  printf(" HELLO STUDENTS ");
  for(i=0; i<10; i++)
     printf("%c",176);
           
  printf("\n\n");
           
  for(i=0; i<10; i++)
     printf("%c",257);
  printf(" HELLO STUDENTS ");
  for(i=0; i<10; i++)
     printf("%c",258);
           
}

Output of the Program:





No comments:

Post a Comment