Computer >> 컴퓨터 >  >> 프로그램 작성 >> C 프로그래밍

C 언어에서 값으로 전달이란 무엇입니까?

<시간/>

값에 의한 전달은 C 프로그래밍 언어에서 인수로 전송되는 값이라고 합니다.

알고리즘

C 언어에서 값에 의한 전달의 작동을 설명하기 위한 알고리즘이 아래에 나와 있습니다.

START
Step 1: Declare a function that to be called.
Step 2: Declare variables.
Step 3: Enter two variables a,b at runtime.
Step 4: calling function jump to step 6.
Step 5: Print the result values a,b.
Step 6: Called function swap.
   i. Declare temp variable
   ii. Temp=a
   iii. a=b
   iv. b=temp
STOP

예시

다음은 값에 의한 전달을 사용하여 두 숫자를 교환하는 C 프로그램입니다 -

#include<stdio.h>
void main(){
   void swap(int,int);
   int a,b;
   printf("enter 2 numbers");
   scanf("%d%d",&a,&b);
   printf("Before swapping a=%d b=%d",a,b);
   swap(a,b);
   printf("after swapping a=%d, b=%d",a,b);
}
void swap(int a,int b){
   int t; // all these statements is equivalent to
   t=a; // a = (a+b) – (b =a);
   a=b; // or
   b=t; // a = a + b;
} // b = a – b;
//a = a – b;

출력

위의 프로그램이 실행되면 다음과 같은 결과가 생성됩니다 -

enter 2 numbers 10 20
Before swapping a=10 b=20
After swapping a=10 b=20

값에 의한 전달에 대해 자세히 알아보기 위해 다른 예를 들어 보겠습니다.

예시

다음은 값에 의한 호출 또는 값에 의한 전달을 사용하여 모든 호출에 대해 값을 5씩 증가시키는 C 프로그램입니다 -

#include <stdio.h>
int inc(int num){
   num = num+5;
   return num;
}
int main(){
   int a=10,b,c,d;
   b =inc(a); //call by value
   c=inc(b); //call by value
   d=inc(c); //call by value
   printf("a value is: %d\n", a);
   printf("b value is: %d\n", b);
   printf("c value is: %d\n", c);
   printf("d value is: %d\n", d);
   return 0;
}

출력

위의 프로그램이 실행되면 다음과 같은 결과가 생성됩니다 -

a value is: 10
b value is: 15
c value is: 20
d value is: 25