블로그
- [C] ECHO OFF \n"); return; } switch(cmd) { case ECHO_OFF: t.c_lflag &= ~ECHO; fprintf(stdout, "[!] ECHO OFF. \n"); break; case ECHO_ON: t.c_lflag |= ECHO; fprintf(stdout, "[!] ECHO ON.
- [ASM] Inclease Global Variable void); unsigned char test; int main(void) { int i = 0; test = 0; for(i = 0; i < 10; i++) { inc(); fprintf (stdout, "test: %02x\n", test); } return 0; } void inc(void) { __asm__( "movl %0, %%eax \n" "inc %%eax