पास बाय वैल्यू या कॉल बाय वैल्यू तर्क के रूप में भेजे जाते हैं।
एल्गोरिदम
मूल्य के आधार पर कॉल के लिए एल्गोरिथम देखें।
Step 1: Enter any 2 numbers at runtime Step 2: Read those two numbers from console Step 3: Call the function swap with arguments is a call by value Step 4: Go to called function swap(int a,int b) Step 5: Print the numbers after swap
उदाहरण
मूल्य के आधार पर कॉल के लिए सी प्रोग्राम निम्नलिखित है -
#include<stdio.h> void main(){ void swap(int,int); int a,b; clrscr(); 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); getch(); } void swap(int a,int b){ int t; t=a; a=b; b=t; }
आउटपुट
जब उपरोक्त प्रोग्राम को निष्पादित किया जाता है, तो यह निम्नलिखित परिणाम उत्पन्न करता है -
enter 2 numbers 10 20 Before swapping a=10 b=20 After swapping a=10 b=20