strncmp함수에 대한 질문입니다

ch0nn0m의 이미지

#include<stdio.h>
#include<string.h>
int main()
{
        char buf[20]="[asdf";
 
        if(strncmp(buf,"[",2))
                printf("[적용된다\n");
        printf("%d\n",strlen(buf));
        printf("실패\n");
}

이렇게 출력하게 되면...
[ch0nn0m@localhost tmp]$ ./t
[적용된다
5
실패

#include<stdio.h>
#include<string.h>
int main()
{
        char buf[20]="[asdf";
 
        if(strncmp(buf,"[",1))
                printf("[적용된다\n");
        printf("%d\n",strlen(buf));
        printf("실패\n");
}

[ch0nn0m@localhost tmp]$ ./t
5
실패

두번째것이 첫번째것과 같은 결과가 나와야하는것이 아닌가요?
[ 는 1바이트를 차지하니깐...1개까지만 확인하는....
근데 2를 해야 되는 이유가...?

UnShit의 이미지

strncmp 는 같을경우 0을 리턴합니다.

http://www.manpagez.com/man/3/strncmp/

freestyle의 이미지

'\0' 문자를 만나면 그 이후부터 판단은 종료합니다.

"[asdf"와 "["를 2자 비교하면

"["는 '\0'을 만나서 비교가 끝나지만, "[asdf"는 문자가 남아있어

서로 다른 것으로 나온 걸 것입니다(덧1 참고).

하지만 1자를 비교하면

'['로 서로 같기에 같은 것으로 나오고요.

strcmp류의 함수의 리턴값이 0이면 동일하다는 뜻이구요.

        char str1[] = "aaabbbb";
        char str2[] = "aaa";
 
 
        str1[3] = '\0';
 
        if( !strncmp(str1, str2, 4) )
                fprintf(stderr, "%s", "bye!");
 
 
        return 0;

저기서 str1[3] = '\0';을 주석처리 하느냐, 하지 않느냐로 결과가 달라집니다.

한 번 해보세요.

(덧1)
그런데 이 예제와 같이, strncmp에서 어느 한 쪽에서 '\0'을 만나면

그 위치 전까지의 판단 결과를 리턴할지, 아니면 위와 같이 그 위치의 결과까지 반영할지가

표준에 정의되어 있는지는 모르겠습니다.

(덧2)
만약 저라면 strncmp의 비교대상으로 오는 문자열 중에

N보다 작은 길이(strlen)의 문자열이 있다면 그 길이를 N으로 대체하지 않을까 싶습니다.

물론 일반적인 경우일 때입니다.

-----------------------
Go to the U-City

----------------------------------------------------------------------------------------
Don't Feed the Trolls!
----------------------------------------------------------------------------------------

댓글 달기

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
이것은 자동으로 스팸을 올리는 것을 막기 위해서 제공됩니다.