You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

15 lines
235 B

#include <litc.h>
int main(int argc, char **argv)
{
char buf[81];
int i;
for (i = 0; i < 79; i++)
buf[i] = ' ';
buf[sizeof(buf) - 2] = '\n';
buf[sizeof(buf) - 1] = 0;
for (i = 0; i < 24; i++)
printf("%s", buf);
return 0;
}