Using Pointer to swap the integer using C# /* Exchange the values by pointers. */
void swap(int *i, int *j)
{
int temp;
temp = *i;
*i = *j;
*j = temp;
}
Dotnet, DotnetCore, Azure, C#,VB.net, Sql Server, WCF, MVC ,Linq, Javascript and React.js
Find number of letter occurence of all letter in c# namespace ConsoleApp1 { internal class Program { static void Main(st...
No comments:
Post a Comment
Comments Welcome