←
↑
アプリケーション部とインタフェース部の交錯
→
多くのプログラムは計算部と入出力部が融合していて分離できない
printf("Input your name: "); scanf("%s", name); s = calc(name); printf("%s\n",s); ....