Powered by SmartDoc

ソフトウェア概論A/B (2015/10/02)
Ver. 1.0

2015年10月2日
栗野 俊一
kurino@math.cst.nihon-u.ac.jp
http://edu-gw2.math.cst.nihon-u.ac.jp/~kurino/2015/soft/soft.html
ソフトウェア概論 A/B2015年10月2日 の資料

目次

講義資料

当日の OHP 資料

講義で利用するサンプルプログラム

Download : sample-001.c ( SJIS 版 )

sample-001.c
/*
 * 2015/10/02 sample-001.c
 */

/*
 *  curses hello
 *
 * 利用方法
 *		コンパイル
 *			cc -Ic:\usr\c\include -o BASENAME.exe sample-001.c -lncurses
 *		実行
 *			BASENAME
 */

#include <stdio.h>
#include <curses.h>	/* curses を利用する場合 */


/*
 *	curses_hello()
 */

void curses_hello( void ) {

  initscr();	   /* curses の利用開始 */

  move ( 10, 30 );	/* カーソルの移動 ( Y, X の順である事に注意 ) */
  addstr ( "Hello, Curses" );	/* 文字列の表示 */

  getch();		/* 文字の入力を待つ */

  endwin();	   		/* curses の利用終了 */

}

/*
 *	main
 *
 */

int main( int argc, char *argv[] )
{

	curses_hello();

	return 0;
}
sample-001.c の実行結果
$ ./sample-001.exe







                         Hello, Curses

講議中に作成したプログラム