Solution :
#include<stdio.h>
#include<conio.h>
main()
{
printf("
!!! >>> = This Is My First Program = <<< !!!");
getch();
}
Program Analysis :
This is the first step to start programming.We must know the name of each element and symbol used in this program.
I have discussed before about each and every single element used here.To know again please start from C Programming part 1 > Introduction to C.
If we can successfully print this message to our computer screen then we are ready to start the journey to learn C programming.Best of luck.
Post a Comment