C언어 매개변수에 대해서 질문이요

윤영주@Google의 이미지

유클리드 호제법 공부하다가 좀 이해가 안되서 질문드립니다.

#include<stdio.h>
 
int input()
{
	int num;
	scanf("%d",&num);
	return num;
 
}
 
void output1(int num1, int num2)
{
	printf("%d %d \n", num1, num2);		//2 3
 
}
 
void output2(int num2, int num1)				
{
	printf("%d %d \n", num1, num2);		//3 2
 
}
 
void output3(int num1, int num2)
{
	printf("%d %d \n", num2, num1);		//3 2
 
}
 
void output4(int num2, int num1)
{
	printf("%d %d \n", num2, num1);		//2 3
 
}
 
 
int main()
{
	int num1, num2;
	num1 = input();
	num2 = input();
	printf("\n\n\n\n");
	output1(num1, num2);
	output2(num1, num2);
	output3(num1, num2);
	output4(num1, num2);
 
 
 
 
 
	return 0;
 
}

매개변수 값 a,b가 있으면 b,a로 놓든 a,b로 놓든 상관 없는줄만 알았는데 아니군요

매개변수와 반환 값 위치 둘중 하나는 고정시켜두고 코딩하는게 정답인건지 아니면 무슨 규칙이 있는건지 잘 모르겠습니다

도와주세요

 의 이미지

사람을 매우 혼란스럽게 만드는 코드로군요. 그러나 컴파일러는 조금도 혼동하지 않습니다.

함수 호출 시 매개변수는 호출하는 쪽(caller)에서 넣어준 순서대로 호출받는 쪽(callee)에 들어갑니다.
양쪽에서 어떤 이름의 변수를 쓰는지는 전혀 상관이 없습니다. 이름이 겹치든 안 겹치든 상관 없습니다.
이름이 겹치면 헷갈려하는 건 사람이고 묵묵히 제 할 일을 하는 건 컴파일러입니다.

printf도 마찬가지. 따로 조작하지 않았다면 매개변수로 넣어준 순서대로 출력해줍니다.

int main()
{
	int num1 = 2;
	int num2 = 3;
	output1(num1, num2); // = output1(2, 3); 2와 3을 차례로 넣습니다.
	output2(num1, num2); // = output2(2, 3); 상동.
	output3(num1, num2); // = output3(2, 3);
	output4(num1, num2); // = output4(2, 3);
	return 0;
}
 
void output1(int num1, int num2) // 넣어준 순서대로 받아갑니다. num1 = 2, num2 = 3
{
	printf("%d %d \n", num1, num2);	// num1, num2 순서. 그러니까 2 3
}
 
void output2(int num2, int num1) // main에서 num2가 3이었다고 여기서도 3일 것 같나요?
				 // 천만에요. num2는 여기서 첫째 매개변수고
				 // 따라서 첫째로 들어온 2를 받아갑니다.
				 // num2 = 2, num1 = 3
{
	printf("%d %d \n", num1, num2);	// num1, num2 순서. 그러니까 3 2 
}
 
void output3(int num1, int num2) // 마찬가지로 넣어준 순서대로 받아갑니다. num1 = 2, num2 = 3
{
	printf("%d %d \n", num2, num1); // 이번엔 printf에서 뒤집어 넣었네요.
					// num2, num1 순서. 그러니까 3 2
}
 
void output4(int num2, int num1) // 마찬가지로 넣어준 순서대로 받아갑니다. num2 = 2, num1 = 3
{
	printf("%d %d \n", num2, num1); // num2, num1 순서. 그러니까 2 3
}
윤영주@Google의 이미지

한방에 이해가 가네요 감사합니다!!

댓글 달기

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