Here is a very simple program that I wrote using Turbo Pascal to display a message Hello World on the screen of your computer. Most of the first programming examples when teaching computer programming is to display a message on the screen. Hello World is the most common given examples to the students. I am using Turbo Pascal for Windows in this sample program of ours. Thank you.
My email address are the following jakerpomperada@gmail.com and jakerpomperada@yahoo.com.
My mobile number here in the Philippines is 09173084360.
Sample Program Output
Program Listing
{Date : March 30, 2017 Thursday }
{Metro Manila, Philippines }
{jakerpomperada@yahoo.com and jakerpomperada@gmail.com }
Program hello_world;
Uses WinCrt;
Begin
clrscr;
writeln;
Writeln;
writeln('HELLO WORLD !!! ');
writeln;
Writeln;
writeln('END OF PROGRAM');
readln;
End.
No comments:
Post a Comment