#include <stdio.h> #include <conio.h> void main() { char far *v = (char far*)0xb8000000; clrscr(); *v = 'w'; v += 2; *v = 'e'; getch(); }
输出是: we
we
我没有得到如何在没有任何printf或其他印刷语句的情况下打印输出.
printf
c dos
c ×1
dos ×1