mirror of
https://github.com/VictorEijkhout/TheArtOfHPC_vol3_cppf08programming.git
synced 2026-01-24 22:44:48 +09:00
9 lines
112 B
C++
9 lines
112 B
C++
#include <stdio.h>
|
|
|
|
int main() {
|
|
printf("a\n");
|
|
printf( "%c[0;0H",(char)27);
|
|
printf("b\n");
|
|
return 0;
|
|
}
|