タグ

2009年12月7日のブックマーク (2件)

  • ファイルへの出力

    この節では、ファイルへデータを書き込む方法について学びます。 ファイルに出力する プログラミング A で最初に作ったプログラムを思い出して下さい。 ただ単に標準出力(ターミナル)に表示するだけのものです。 #include <stdio.h> int main() { printf("My name is Enokida Yuuichirou.\n"); return 0; } これは My name is Enokida Yuuichirou. という表示をただ行うプログラムですが、これの出力を標準出力ではなくファイルに行うようにします。 つまり printf による出力先をファイルにするのです。 実験 プログラムは以下のようになります。 手元に保存して、実行してください。 #include <stdio.h> #include <stdlib.h> int main() { FILE

  • AddDefaultCharset(core - Apache HTTP サーバ)

    This directive enables operating system specific optimizations for a listening socket by the Protocol type. The basic premise is for the kernel to not send a socket to the server process until either data is received or an entire HTTP Request is buffered. Only FreeBSD's Accept Filters, Linux's more primitive TCP_DEFER_ACCEPT, and Windows' optimized AcceptEx() are currently supported. Using none fo