C 문법 질문드립니다.

newtype의 이미지

1 #include
2
3 void a(int size, char* text)
4 {
5 char buf[size];
6
7 strcpy( buf, text);
8
9 printf( buf );
10 printf( "\n");
11
12 printf("sizeof buf=[%d]\n", sizeof(buf) );
13 }
14
15 int main()
16 {
17 int size;
18
19 printf("input size:");
20 scanf("%d",&size);
21
22 a(size, "hello");
23
24 return 0;
25 }

5번 라인의 문법이 맞나요?
컴파일 해보니 되네요.
단, 5번 라인에서 초기화를 해주면 에러가 발생합니다.

gcc, sun cc 에서 컴파일 & 테스트 해봤습니다.

C를 다시 배워야할까봐요 ㅎㅎ

next의 이미지

맞지가 않네요.
배열을 동적으로 할당 할 수는 없으니까요.

포인터를 사용하여 동적 할당 메모리를 사용하셔야 겠네요.

김일영의 이미지

C99에서부터 되는걸로 압니다. 그렇지만 초기화까지 가변적으로 하는건 되는건지 모르겠습니다.
초기화를 어떻게 하려고 하신건지 그 코드도 올려주시면 더 정확한 답을 주시는 분이 계실 듯.

newtype의 이미지

C99 부터 지원 하는군요.
답변 감사드립니다.

초기화는

char buf[size] = {0,};

이렇게 했습니다.

$ cc -o t test_func.c
test_func.c: In function `a':
test_func.c:5: error: variable-sized object may not be initialized
test_func.c:5: warning: excess elements in array initializer
test_func.c:5: warning: (near initialization for `buf')

이런 에러가 발생하네요,

삶,
사랑하므로 그 외로운 싸움 앞에
생각해보면 참으로 우스꽝스럽기만 합니다.

grassman의 이미지

저도 궁금해서 찾아보니 C99 표준의 initialization에서 variable length array를 사용할 수 없더군요.

The type of the entity to be initialized shall be an array of unknown size or an object type
that is not a variable length array type.

newtype의 이미지

관련 글이 있네요.

http://minjang.egloos.com/1727588

삶,
사랑하므로 그 외로운 싸움 앞에
생각해보면 참으로 우스꽝스럽기만 합니다.

댓글 달기

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