Step 1: Install and setup Turbo C compiler on your computer.
Step 2: Open Turbo C from your Desktop or Programs menu. Select “File” from menu bar and select option “New”.
Step 3: Type in the following code in your Turbo C editor to create your first program in C.
#include
#include
void main()
{
clrscr();
printf("Hello User");
}
Step 4: SAVE your C program. Select “File” from menu -> click-> Save.
Step 5: Compiling your program. select -> Compile from menu and click-> Compile.
Step 6: RUN the program.select -> Run from menu and click -> Run and now you will see the output screen.