মান দ্বারা পাস বা মান দ্বারা কল আর্গুমেন্ট হিসাবে পাঠানো হয়.
অ্যালগরিদম
মান অনুসারে কলের জন্য অ্যালগরিদম পড়ুন।
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