C초보 함수 및 실행방법 질문..

ProtocolC의 이미지

#include

int Increment(int n);
int TwoIncrement(int n);

int main(void)
{
int num = 2;
num = Increment(num);
printf("num : %d \n", num);

num = TwoIncrement(num);
printf("num : %d \n", num);
return 0;
}
int TwoIncrement(int n)
{
n = Increment(n);
n = Increment(n);
return n;
}

int Increment(int n)
{
n++;
return n;

}

위의 코드를 실행하는데 문의입니다.

1. Dev C++에서는
[Warning] command line option "-fconstant-string-class=NSConstantString" is valid for ObjC/ObjC++ but not for C
cannot find -lobjc
ld returned 1 exit status
이러한 에러가 뜨고
비쥬얼 스튜디오에서는 잘돌아갑니다.. 왜 그런지 문의 드리구요

2. Dev C++에서 컴파일하고 실행시 프롬프트로 직접가서 실행하지 않는한은 실행이 되지 않더라구요..
한마디로 실행후 실행값이 프롬프트창으로 뜨질않습니다.
자동실행은 어떻게 할수 있을까요? 현재 사용환경은 윈도우7 입니다.

3. 위의 코드중
int TwoIncrement(int n)
{
n = Increment(n);
n = Increment(n);
return n;
}

이 부분이 어떻게 실행되어서 결과값이 3, 5가 나왔는지 이해가 되질 않습니다..
Increment(num)이 2를 받아서 아래쪽 으로 호출되 n++;되어 3으로 표시되는것 같은데
도무지 위의 라인은 어떤건지 이해가 되질않습니다..

초보라 알기쉽게 순서 설명좀 부탁드리겠습니다

ranggol의 이미지

컴파일은 main 함수부터 실행되고 num=2 에서 increment(2)=3이 되어 num=3으로 바뀌게 됩니다.
그 다음에 twoincrement 함수 실행되어 해당 함수 안에 있는 increment 함수를 다시 불러서 연산하니 n=4, n=5 순으로 증가하고
n=5를 리턴하네요.

ProtocolC의 이미지

밑에서 다시 불러드리는군요
감사합니다..

hys545의 이미지

obj-c프로젝트 에서 컴파일한거 아닌가 확인해보세여

즐린

댓글 달기

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