나도 초보인데

void fn(char* a) {

// a배열로 하고싶은거

}



int main() {

char x[4] = { '1', '2', '3', '4' };

fn(x);


return 0;

}

이러면 걍 만사해결 아님?