Friday 11 March 2016

How To Execute C Programme



How To Execute C Programme?
This tutorial is designed to introduce execution of C programme .
C Is a general-purpose, computer programming language, supporting structureds programming.
Open turbo c window,
Go to new window,
Write your programme into c editor.
Then save your program.
Compile the programme (press alt + F9).
If there is any syntax error, window shows you error and warning.
Go back to source editor, correct error.
Again compile the programme (press alt + F9).
If source code is syntactally correct, then error is 0.
Run the programme (press control + F9).
Window shows you desired Output.
Here is simple example of C program.
#include<stdio.h>
#include<conio.h>
main ()
     {
            printf(“Wel come to TCCI-Tririd computer coaching Institute.”);
     }
Output:
Wel come to TCCI-Tririd computer coaching Institute.
Basic programming of C gives you explanation of how to write simple c programme. This programme just display what we have written in printf statement.
To learn more contact us at 98256 18292.
If you have  any query, feel free to ask at tccicoaching@gmail.com

No comments:

Post a Comment