Write a program to print your name
Written by Sharad Raj on 13th of March, 2018
BASIC PROGRAMS
C LANGUAGE PROGRAMS
PROGRAM CODE
#include<stdio.h> #include<conio.h>
void
main
()
{
printf
(
"your name"
);
getch
();
}