메모리 보호기법 공부하던 도중 C 파일로 gets 함수를 사용해서 작성했는데 warning: implicit declaration of function ‘gets’ warning: the `gets’ function is dangerous and should not…
python에서 변수에 문자열이 들어있는데 해당 문자열중에 일부 내용을 찾아 다른 문자로 변환하거나 문자열내에 특정 문자만 삭제하고 싶을때 기본적으로 제공하는 replace 함수를 사용한다. replace 사용법# replace(“기존값”,…