Tag Archives for Call By Value

program to interchange the value of two variable from call by value

#include<stdio.h> main ( ) { int a = 5; int b = 8; printf ( " Before swapping a = %d , b = %d\n",a,b); swap( a , b); printf ( " After calling swap function a = %d , … Continue reading

15. November 2009 by Jishnu
Categories: C Programming | Tags: | Leave a comment

← Older posts