This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /* | |
| * Author : BEAN | |
| * | |
| * fork関数を触ってみた初日の成果(?)最近やたらfork聞くので... | |
| * 特に何か役に立つものじゃないけど... | |
| * | |
| * 誰かの理解の助けになればいいか。とか思いつつGist使いたかっただけ | |
| * | |
| * 環境は macOS Sierra 10.12.6, Xcodeのgcc. | |
| * |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /* | |
| * Author : BEAN | |
| * date : 2017/10/25 | |
| * studyexecl.cで呼び出すネコ | |
| */ | |
| #include <stdio.h> | |
| #include <string.h> | |
| int main(int argc, char *argv[]){ |
NewerOlder