gotoxy() move the cursor at specified location in the output screen.Syntax// gotoxy() function definition void gotoxy(int x, int y) { printf("%c[%d;%df", 0x1B, y, x); } ExampleConsider the example:#include <stdio.h> // gotoxy() function definition void gotoxy(int x, int y) ...
> system("pause") because I want the getch() function to return the key > that was pressed. I use that in many of my programs.[/color] Too bad. Jonathan Re: clrscr Compiler Independent functions "Binny V A" <binnyva@hotmai l.com> wrote in message news:68cd8f94.0 411221127.3b1f7 ...
a[Error] C:\\Documents\\C-Free\\Temp\\未命名7.cpp:60: error: `clrscr\' was not declared in this scope (错误) C:\ \文件\ \无C \ \临时雇员\ \未命名7.cpp :60 : 错误: “clrscr \’在这个范围未被宣称 [translate] 英语翻译 日语翻译 韩语翻译 德语翻译 法语翻译 俄语翻译 阿拉伯语...
The clrscr() function was used to clear the MS-DOS console screen in older C compilers like Turbo C and Turbo C++. clrscr() is not a standard C function—if you try to compile a program that includes clrscr() in a modern compiler like GCC...