C Program to Display "Turbo C" Window


SOURCE CODE:
#include<stdio.h>
#include<conio.h>
void main()
{
int i,j;
clrscr();
for(i=1;i<26;i++)
{
 for(j=1;j<=80;j++)
   {
   gotoxy(j,i);
   textbackground(9);
   cprintf(" ");
   }
 }
 for(j=1;j<=80;j++)
  {
   gotoxy(j,1);
   textbackground(7);
   cprintf(" ");
  }
 for(j=1;j<=80;j++)
  {
  gotoxy(j,25);
  textbackground(7);
  cprintf(" ");
  }
  {
gotoxy(1,1);
textcolor(0);
cprintf("   File   Edit   Run   Compile   Project   Options   Debug   Break/watch         ");
  }
gotoxy(4,1);
textcolor(4);
cprintf("F");
gotoxy(11,1);
cprintf("E");
gotoxy(18,1);
cprintf("R");
gotoxy(24,1);
cprintf("C");
gotoxy(34,1);
cprintf("P");
gotoxy(44,1);
cprintf("O");
gotoxy(54,1);
cprintf("D");
gotoxy(62,1);
cprintf("B");
     {
    textbackground(9);
    textcolor(7);
    gotoxy(1,2);
    cprintf("%c",213);
    gotoxy(80,2);
    cprintf("%c",184);
    gotoxy(1,24);
    cprintf("%c",192);
    gotoxy(80,24);
    cprintf("%c",217);
     }
for(i=3;i<24;i++)
  {
  textbackground(1);
  textcolor(7);
  gotoxy(1,i);
  cprintf("%c",179);
  gotoxy(80,i);
  cprintf("%c",179);
  }
for(i=2;i<80;i++)
 {
  textbackground(1);
  textcolor(7);
  gotoxy(i,2);
  cprintf("%c",205);
  gotoxy(i,24);
  cprintf("%c",196);
  gotoxy(i,22);
  cprintf("%c",196);
 }
  gotoxy(1,22);
  printf("%c",195);
  gotoxy(80,22);
  printf("%c",180);
    gotoxy(38,2);
    textcolor(15);
    cprintf(" Edit ");
 gotoxy(8,3);
 textcolor(7);
 cprintf("Line 1     Col 1   Insert Indent Tab Fill Unindent   C:JJ_CPPP.C");
gotoxy(2,25);
textbackground(7);
textcolor(0);
cprintf("F1-Help  F5-Zoom  F6-Switch  F7-Trace  F8-Step  F9-Make  F10-Menu");
  {
    gotoxy(2,25);
    textcolor(4);
    cprintf("F1");
    gotoxy(11,25);
    cprintf("F5");
    gotoxy(20,25);
    cprintf("F6");
    gotoxy(31,25);
    cprintf("F7");
    gotoxy(41,25);
    cprintf("F8");
    gotoxy(50,25);
    cprintf("F9");
    gotoxy(59,25);
    cprintf("F10");
  }
  for(j=69;j<=73;j++)
   {
    gotoxy(j,25);
    textbackground(9);
    cprintf(" ");
   }
   {
   textcolor(15);
   gotoxy(70,25);
   cprintf("NUM");
   }
  gotoxy(37,22);
  textcolor(7);
  cprintf(" Watch ");
  getch();
}
Previous
Next Post »

Still not found what you are looking for? Try again here.