回答編集履歴
2
変更
answer
CHANGED
@@ -4,9 +4,11 @@
|
|
4
4
|
#include <stdio.h>
|
5
5
|
void main(void){
|
6
6
|
if ( 0!=1 ){
|
7
|
-
printf("True\n");
|
7
|
+
printf("True\n"); //Trure
|
8
8
|
}else{
|
9
9
|
printf("False\n");
|
10
10
|
}
|
11
|
+
printf("Result:%d\n",0!=1); // Result:1
|
12
|
+
printf("Result:%d\n",8!=5); // Result:1
|
11
13
|
}
|
12
14
|
```
|
1
追加
answer
CHANGED
@@ -1,4 +1,4 @@
|
|
1
|
-
とりあえず思いつくのはこんなパターン
|
1
|
+
とりあえず思いつくのはこんなパターン 結果はTRUE
|
2
2
|
|
3
3
|
```c
|
4
4
|
#include <stdio.h>
|