SOURCE CODE:
#include<stdio.h>
#include<conio.h>
void main()
{
int i,j;
clrscr();
for(i=1;i<=80;i++)
{
textbackground(7);
gotoxy(i,1);
cprintf(" ");
}
textcolor(4);
gotoxy(3,1);
cprintf("%c",240);
gotoxy(6,1);
textcolor(0);
cprintf("File Edit Search Run Compile Debug Project Options Window Help");
textcolor(4);
gotoxy(6,1);
cprintf("F");
textcolor(4);
gotoxy(12,1);
cprintf("E");
textcolor(4);
gotoxy(18,1);
cprintf("S");
textcolor(4);
gotoxy(26,1);
cprintf("R");
textcolor(4);
gotoxy(31,1);
cprintf("C");
textcolor(4);
gotoxy(40,1);
cprintf("D");
textcolor(4);
gotoxy(47,1);
cprintf("P");
textcolor(4);
gotoxy(56,1);
cprintf("O");
textcolor(4);
gotoxy(67,1);
cprintf("W");
textcolor(4);
gotoxy(75,1);
cprintf("H");
for(i=1;i<=80;i++)
for(j=2;j<25;j++)
{
textbackground(0);
textcolor(7);
gotoxy(i,j);
cprintf("%c",178);
}
textbackground(7);
textcolor(0);
gotoxy(1,25);
cprintf(" F1 Help %c System commands and Transfer programs ",179);
textcolor(4);
gotoxy(2,25);
cprintf("F1");
getch();
}
#include<stdio.h>
#include<conio.h>
void main()
{
int i,j;
clrscr();
for(i=1;i<=80;i++)
{
textbackground(7);
gotoxy(i,1);
cprintf(" ");
}
textcolor(4);
gotoxy(3,1);
cprintf("%c",240);
gotoxy(6,1);
textcolor(0);
cprintf("File Edit Search Run Compile Debug Project Options Window Help");
textcolor(4);
gotoxy(6,1);
cprintf("F");
textcolor(4);
gotoxy(12,1);
cprintf("E");
textcolor(4);
gotoxy(18,1);
cprintf("S");
textcolor(4);
gotoxy(26,1);
cprintf("R");
textcolor(4);
gotoxy(31,1);
cprintf("C");
textcolor(4);
gotoxy(40,1);
cprintf("D");
textcolor(4);
gotoxy(47,1);
cprintf("P");
textcolor(4);
gotoxy(56,1);
cprintf("O");
textcolor(4);
gotoxy(67,1);
cprintf("W");
textcolor(4);
gotoxy(75,1);
cprintf("H");
for(i=1;i<=80;i++)
for(j=2;j<25;j++)
{
textbackground(0);
textcolor(7);
gotoxy(i,j);
cprintf("%c",178);
}
textbackground(7);
textcolor(0);
gotoxy(1,25);
cprintf(" F1 Help %c System commands and Transfer programs ",179);
textcolor(4);
gotoxy(2,25);
cprintf("F1");
getch();
}
EmoticonEmoticon