Saturday 15 December 2018

First Program

First Program

Programming in C language is very simple and it is easy to learn here i will show you how to write your first program. For writing C program you need Turbo C Editor. First you open TC and write code.

Example

#include<stdio.h>
#include<conio.h>

void main()
{
printf("This is my first program");
getch();
}

Output

This is my first program
  • After writing complete code save the program using F2
  • Save your code with .c extension for example: hello.c
  • After save the code you need to compile your code using alt+f9
  • Finally Run the program using clt+f9

Save C program

Save any C program using .c Extension with file name. For example your program name is sum, then it save with sum.c.

Syntax

filename.c

Compile and Run C Program

for compile any C program you just press alt+f9 , after compilation of your c program you press clt+f9 for run your C program.

Syntax

Compile -> alt+f9

Run -> clt+f9

No comments:

Post a Comment