# 1Multiple Choice다음 중 문자열을 초기화하는 올바른 방법은 무엇인가요?char str[4] = 'abc';char str[4] = {'a', 'b', 'c'};char str[4] = "abc";char str[4] = 123;