All articles
c

Program to print name and website

Share this article

Share on LinkedIn Share on X (formerly Twitter)

The following program is to print some text in the console using C language.

# include <stdio.h>
# include <conio.h>
void main()
{
  printf("You're awsm");
  printf("\nhttps://awsm.page");
  getch();
}

Comments