codeup-1060 비트 단위로 AND 하여 출력하기 Author: Slay Date: April 28, 2023 11:43:50 Category: codeup Qcodeup 1060 C code123456789101112#include <stdio.h>int main(void){ int a,b; scanf("%d %d", &a, &b); printf("%d\n", a & b); return 0;} Author: Slay Permalink: http://sean-baek.github.io/2023/04/28/codeup-1060/ License: Copyright (c) 2021 CC-BY-NC-4.0 LICENSE Slogan: Do you believe in DESTINY? Tag(s): back · home codeup-1061 비트단위로 OR 하여 출력하기 codeup-1059 비트단위로 NOT 하여 출력하기