[완료] 배열의 문자가 자꾸 사라지네요..?

kang1의 이미지

int main(){

char buf[200]={"unix programming"};
short i;
i=100;

printf("buf : %s\n", buf);
scanf("%d", &i);

printf("buf : %s\n", buf);

return 0;
}

출력 :
buf : unix programming
1
buf :

scanf로 i값을 입력받은후 buf를 출력하면 문자가 사라져버립니다.

buf 문자열을 조작하지도 않았는데 말이죠... 왜이런거죠.??

rustykey7의 이미지

scanf("%d", &i);

scanf("%hd", &i);
로 고쳐주세요.

%d 는 int 형을 의미하기 때문에, 4바이트를 조작합니다.
반면 i는 현재 short 으로 선언되어 있기 때문에 2바이트만 할당되어 있고,
결과적으로 메모리 구조상 buf 의 영역 시작부분 2바이트를 침범하게 됩니다.

i를 int 형으로 고쳐주셔도 해결되겠습니다.

이런 글에 int가 4바이트가 아닐수도 있다거나 하는 태클이 들어오지는 않겠지요.

이러한 형식 지정자들 (%로 시작하는) 을 외워서 써야 한다는건
몇몇 C++ 책 초장에 나오는 C의 단점입니다. 사실 저도 short int가 %hd 라는건 지금 검색해보고 처음 알았네요.

그리고 보통은 문자열 초기값은 char buf[200]="unix programming"; 식으로 대괄호 없이 적지 않나요?
처음엔 여기에 문제가 있는줄 알았네요;

gurumong의 이미지

변수 i가 short형(int형이 아닌) 이기 때문에
scanf함수에 포멧을 %d가 아닌 %hd를 넘겨주어야합니다
%d를 넘겨주었기에 i를 int형으로 잘못 생각하고 있겠지요

아마 지금과 같은 출력이 나오는것은 스택에 buf와 i가 차례대로 생성되고
i의 크기를(short형) 넘어서는 int형의 입력에 인접하는 buf의 메모리가 수정이 되어서 저렇게 나오는게 아닌가 싶네요

좀 더 자세한 설명은 다른 분이 해주실꺼예요

댓글이 없는걸 보고 쓰고 나니까 댓글이 이미 달려있네요 -_-;

rustykey7의 이미지

어잌후. ^^;; 완벽히 같은 내용을... ㄱ-

kang1의 이미지

%hd가 있는것은 첨알았네요~ㅋㅋ
완벽한 답변 감사 드립니다.ㅎㅎ

---

대한민국

댓글 달기

Filtered HTML

  • 텍스트에 BBCode 태그를 사용할 수 있습니다. URL은 자동으로 링크 됩니다.
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param><hr>
  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.

BBCode

  • 텍스트에 BBCode 태그를 사용할 수 있습니다. URL은 자동으로 링크 됩니다.
  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param>
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.

Textile

  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • You can use Textile markup to format text.
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param><hr>

Markdown

  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • Quick Tips:
    • Two or more spaces at a line's end = Line break
    • Double returns = Paragraph
    • *Single asterisks* or _single underscores_ = Emphasis
    • **Double** or __double__ = Strong
    • This is [a link](http://the.link.example.com "The optional title text")
    For complete details on the Markdown syntax, see the Markdown documentation and Markdown Extra documentation for tables, footnotes, and more.
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param><hr>

Plain text

  • HTML 태그를 사용할 수 없습니다.
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.
  • 줄과 단락은 자동으로 분리됩니다.
댓글 첨부 파일
이 댓글에 이미지나 파일을 업로드 합니다.
파일 크기는 8 MB보다 작아야 합니다.
허용할 파일 형식: txt pdf doc xls gif jpg jpeg mp3 png rar zip.
CAPTCHA
이것은 자동으로 스팸을 올리는 것을 막기 위해서 제공됩니다.