plunkerでjor1k その3
概要
plunkerでjor1kやってみた。
linuxプログラミングしてみた。
issueあげたら直った。
結果
~ $ cat main.c
#include <stdio.h>
#include <stdlib.h>
int main(int argc, char * argv[])
{
int i;
for (i = 1; i < argc; i++)
{
printf("%s%s", (i == 1 ? "" : " "), argv[i]);
}
putchar('\n');
exit(0);
}
~ $ gcc main.c
~ $ ./a.out abc
abc
~ $ uname -a
Linux openrisc 4.4.0-42578-gacba10ee627d-dirty #6 Thu May 25 20:53:14 UTC 2017 openrisc GNU/Linux
~ $ cat main.c
#include <stdio.h>
#include <stdlib.h>
int main(int argc, char * argv[])
{
int i;
for (i = 1; i < argc; i++)
{
printf("%s%s", (i == 1 ? "" : " "), argv[i]);
}
putchar('\n');
exit(0);
}
~ $ gcc main.c
~ $ ./a.out abc
abc
~ $ uname -a
Linux openrisc 4.4.0-42578-gacba10ee627d-dirty #6 Thu May 25 20:53:14 UTC 2017 openrisc GNU/Linux
以上。
Author And Source
この問題について(plunkerでjor1k その3), 我々は、より多くの情報をここで見つけました https://qiita.com/ohisama@github/items/b550517b8f41e3234bc6著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .