医療系の仕事をしています。生命の尊さ、美しさがどのようなメカニズムで生じるのかに興味があります。科学の方法論を用いて、このような問いに応えたい、私はこう思って医学生物学の基礎研究のトレーニングを受けてきました。生命を科学的手法を用いて理解を試みる上で、genomeを始めとした種々の大量データの処理が必要不可欠であることを痛感しました。また、生命科学が物理学、数学、統計学、有機化学などの種々の学問と深い関わりを持つことを実感しました。そのため、このブログは広範囲の学問領域に関しての記事を載せています。日々の学習内容を文書に書き残し、それを読み返すことによって、体系化された知識を身に付けることを目標としています。どうぞよろしくお願いします。
システムコールwriteを使った簡単なプログラミング
/* simple_write.c*/
#include<unistd.h> /* write */
#include<stdlib.h> /* exit */
int main()
{
/*
#include <unistd.h>
size_t write(int fildes, const void *buf, size_t nbytes);
*/
/*
#include <stdlib.h>
void exit(int status);
*/
/*When a program starts, it usually has three of these descriptor
already opened. 1:Standard input, 2:Standard output, 3:Standard error
*/
/* Simply prints a pessage on the standard output(filediscriptor is 1) */
if((write(1, "Here is some data\n", 18)) != 18 ){
write(2, "A write error has occurred on file descriptor 1 \n", 46);
exit(1);}
/* When a program exits, all open file descriptors are automatically closed,
so we don't need to close them explicitly */
exit(0);
}