C LAB‎ > ‎(Sem1) Introduction to C‎ > ‎

WAP to display text on screen.

posted Nov 18, 2010, 4:42 AM by Neil Mathew   [ updated Nov 18, 2010, 4:44 AM ]


SOURCE CODE:

1
2
3
4
5
6
7
#include<stdio.h>
 
int main()
{
printf(" Welcome to Neil's Practical File. XD ");
return 0;
}

 

OUTPUT:

 Welcome to Neil's Practical File. XD

 

Comments