강의

멘토링

로드맵

Inflearn brand logo image
#include <stdio.h>

int main() {
    int *ptr;
    *ptr = 10;
    return 0;
}