c_beginer
Newbie level 1
I want to draw lines and boxes using C language that run under DOS without active graphic-mode from BIOS. Please help. Source code would be helpful. Thanx
c_beginer
c_beginer
Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
void draw_line(int ch)
{
int i;
printf("%c", '\n');
for(i = 0; i < 80; i++)
printf("%c", ch);
printf("%c", '\n');
/* printf can be replaced by putch and putchar */
}