Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...

1. Write a function to swap two values ?
$a = 10;
$b = 20;
echo $a, $b;
swap(); // If u want u can pass parameters
echo $a, $b; // It should print 20 , 10

Answer Posted / binoyav

$a = 10;
$b = 20;

echo $a, $b;
echo "<br>";
swap($a, $b);
echo $a, $b;
function swap(&$a, &$b)
{
$temp = $a;
$a = $b;
$b = $temp;
}

Is This Answer Correct ?    80 Yes 6 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What is php and its uses?

1014


How to open a file in php?

1125


How to merge values of two arrays into a single array?

1089


What is difference between print and echo in php?

984


What is meant by session in php?

973


Xplain is it possible to use com component in php?

992


Can we use include ("xyz.php") two times in a php page "index.php"?

1068


What are the differences between php constants and variables?

1232


What is the purpose of php?

1007


What are the differences between GET and POST methods?

1149


What is difference between mysqli and mysql?

1112


What does the initials of php stand for?

1006


Define about declare construct?

1103


How to convert numbers to strings in php?

1089


Explain the difference between unlink() and unset()?

994