How To Execute C Programme? Welcome to TCCI-Tririd Computer Coaching Institute. This tutorial is designed to introduce execution of C programme . C Is a general-purpose, computer programming supporting structured 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(â&#x20AC;&#x153;Wel come to TCCI-Tririd computer coaching Institute.â&#x20AC;?); } Output:
language,