Wordle 247 4/6
⬜⬜⬜🟩🟨
⬜⬜🟨🟩⬜
🟨⬜⬜🟩🟩
🟩🟩🟩🟩🟩
nerdlegame 32 5/6
⬛🟪⬛⬛🟪🟪🟩🟪
🟪🟪⬛🟩⬛🟪🟩⬛
🟪⬛🟩🟩🟩🟩⬛🟪
🟩⬛🟩🟩🟩🟩🟩⬛
🟩🟩🟩🟩🟩🟩🟩🟩
https://nerdlegame.com #nerdle
#Worldle #31 2/6 (100%)
🟩🟩🟩🟩🟨↙️
🟩🟩🟩🟩🟩🎉
https://worldle.teuteuf.fr
World 2167 0/7B
⬛⬛🟥🟥🟥🟥⬛⬛
⬛🟧🟧🟧🟥🟥🟧⬛
🟧🟧🟧🟧🟥🟥🟧🟧
🟥🟧🟧🟥🟥🟥🟥🟧
🟥🟧🟥🟥🟥🟥🟥🟧
🟥🟥🟥🟥🟥🟥🟥🟧
⬛🟥🟧🟧🟥🟥🟧⬛
⬛⬛🟥🟥🟥🟥⬛⬛
#include <stdio.h>
int main(void){
// Your code here!
int arr[] = {0, 1, 2, 3, 4, 5, 6, 7};
int* p = &arr[2];
printf("%d\n", p[-2]);
return 0;
}
で0が出てくる#include <stdio.h>
#define TWO 1 + 1
int main(void){
printf("%d\n", TWO * 0); // 2 * 0なので当然0
return 0;
}