7 lines
97 B
C
7 lines
97 B
C
#include <stdio.h>
|
|
|
|
int main() {
|
|
char esc[] = {'\033'};
|
|
printf("%c %d",esc[1],esc[1]);
|
|
}
|