Call by Value vs Call by Reference in C Programming | Difference Explained with Example

Publié le: 11 mai 2026
sur la chaîne: Edu Paila
28
1

Call by Value vs Call by Reference in C Programming | Difference Explained with Example

In this video, we have discussed about difference between Call by Reference vs Call by Value with examples in C language.

What we have discussed:
What is Call by Value
What is Call by Reference
Difference between both
Example programs in C


------Code for Call by Reference-----

#include "stdio.h"
void fn(int *a, int *b){
*a = 50;
*b = 60;
}
int main()
{
int x = 10;
int y = 20;
fn(&x, &y);
printf("%d \n%d", x, y);
}

-------Code for Call by Value-------

#include "stdio.h"
void fn(int x, int y){
x = 50;
y = 60;
}
int main()
{
int x = 10;
int y = 20;
fn(&x, &y);
printf("%d \n%d", x, y);
}


IDE used : Dev Cpp

Learn JavaScript:
   • JavaScript Practise 2 || in Nepali  

Related Topics:
Difference between Call by Value and Call by Reference
Function calling methods


Sur cette page du site, vous pouvez voir la vidéo en ligne Call by Value vs Call by Reference in C Programming | Difference Explained with Example durée heure minute seconde en bonne qualité , qui a été Téléchargé par l'utilisateur Edu Paila 11 mai 2026, Partagez le lien avec vos amis et connaissances, sur youtube cette vidéo a déjà été regardée 28 fois et il a aimé 1 téléspectateurs. Bon visionnage!