This shows you the differences between two versions of the page.
|
c:conio.h:window [2013/02/08 19:34] 158.181.88.241 created |
c:conio.h:window [2024/02/16 01:05] (current) |
||
|---|---|---|---|
| Line 16: | Line 16: | ||
| int main( void ) | int main( void ) | ||
| { | { | ||
| - | window(100,42,12,20); | + | clrscr(); |
| + | window(20,10,42,42); | ||
| textcolor(3); | textcolor(3); | ||
| textbackground(6); | textbackground(6); | ||
| - | cprintf("window at 100, 42, 12, 20\n"); | + | cprintf("window at 20,10,42,42\n"); |
| return 0; | return 0; | ||
| } | } | ||
| Line 25: | Line 26: | ||
| ===== output of window example ===== | ===== output of window example ===== | ||
| - | create a little window | + | {{:c:conio.h:window.png?nolink|example output of window in cmd}} |