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...

f i give input like 1,1,4,5,6,1,2,5,4,1,2, then output
should be like : 1-4, 2-2, 4-2, 5-1, 6-1 which means 1
occurs 4 times, 2 occurs 2 times like so.

Answer Posted / nag

int[] dup = {1,1,4,5,6,1,2,5,4,1,2};
int[] kk = new int[10];
foreach(int k in dup)
{
kk[k] = kk[k] + 1;
}
for (int i = 0; i < 10; i++)
{
if (kk[i] != 0)
Console.Write(i.ToString() + " - " + kk
[i].ToString() + ", ");
}
Console.ReadLine();

Is This Answer Correct ?    3 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

List the two important objects of ado.net and also list the namespaces that are commonly used in ado.net to aid in connection to a database.

961


Why objects are stored in heap in c#?

994


What is “using” statement in c#?

1150


How many bytes is a char c#?

939


What is the difference between int and int in c#?

1104


What's the implicit name of the parameter that gets passed into the set method/property of a class?

1043


What is array and types of array in c#?

1083


What is delegate in c# interview questions?

1066


What is a .aspx file?

922


Is friend a constructor?

969


Are structs faster than classes?

986


What is difference between class and abstract class in c#?

982


How do I run managed code in a process?

1075


State whether it is true to test a Web service you must create a windows application or Web application to consume this service or not?

1004


What is the lock statement in c#?

1043