I was thinking , from where should I start my Hello Wold column. And finally I thought, why cant I start with basic and primary language C. Who are computer science student, they must be knowing that C should be the starting point to build career in software. so lets start with brief history about C.
C is a general-purpose language developed in 1972 by Dennis Ritchie at the Bell Telephone Laboratories for use with the Unix Operating system.
Lets develop Hello World program in C.
But before writing programs, We require IDE (Integrated Development Environment) for faster development. so lets download Turbo C. Click here to download. Please unzip this folder and click on TC.exe, so it will open Turbo C IDE.
Steps to develop and run Hello Wrold in C.
- Alt+F and select New.
- Type down this code.
#include < stdio.h>
void main()
{
printf("Hello World");
}
- Its time to compile. Alt + C and select Compile to Obj.
- Ctrl + F9 to run compiled program.
- And for watching Hello World, press Alt + F5 and its done.
if you have any question or you want more help than please post comment.
If you enjoyed this post, feel free to subscribes to our rss feeds