Home

Program to print name and website

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();
}


Last Updated on

Next Post: GraphProtocol: TS2322 null assignment in Subgraph →

Comments