初C言語です。
codeanywhareで作業しました。
test.c
#include <stdio.h>
int score = 101;
int main (void)
{
printf("[★]\n");
if(score > 10)
{
printf("※\n");
printf("⭐️\n");
printf("✳︎\n");
}
}
test.c と同じディレクトリで下記を実行
make test
そして
./testを実行
cabox@test:~/workspace/test$ ./test
[★]
※
⭐️
✳︎
cabox@test:~/workspace/test$
int score = 1;
とかにすると最初のほしだけになります。