Purchase Solution

Program on Arrays

Not what you're looking for?

Ask Custom Question

Given an array of n integers, find the integer that appears most frequently in the array. Use pointer instead index.

Purchase this Solution

Solution Summary

This is a program written in C++ to find the number that occurs most frequently in a list of numbers.

Solution Preview

Given an array of n integers, find the integer that appears most frequently in the array. Use pointer instead index

Source Code:

#include<stdio.h>
#include<malloc.h>

void main()
{
int *a,i,n,count=0,large=0,num,j;

printf("n Enter the size of the array:");
scanf("%d",&n);

a=(int *)malloc(sizeof(int)*n);

printf("n Please enter the numbers ...

Purchase this Solution


Free BrainMass Quizzes
Basic Networking Questions

This quiz consists of some basic networking questions.

Word 2010: Tables

Have you never worked with Tables in Word 2010? Maybe it has been a while since you have used a Table in Word and you need to brush up on your skills. Several keywords and popular options are discussed as you go through this quiz.

C# variables and classes

This quiz contains questions about C# classes and variables.

C++ Operators

This quiz tests a student's knowledge about C++ operators.

Word 2010: Table of Contents

Ever wondered where a Table of Contents in a Word document comes from? Maybe you need a refresher on the topic? This quiz will remind you of the keywords and options used when working with a T.O.C. in Word 2010.