#include "stdio.h"
#include "conio.h"
int main(void)
{
int n,m;
clrscr();
printf("Enter no.s for textcolor & background\n");
scanf("%d %d",&n,&m);
window(10,10,40,11);
textcolor(n);
textbackground(m);
cprintf("See this colours\n");
getch();
return 0;
}
0 comments:
Post a Comment