answersLogoWhite

0

#include<stdio.h>

#include<conio.h>

void main()

{

int a[10],i,j,k;

int count=1,num[10],pos=0;

clrscr();

printf("Enter the Array Element ");

for(i=0;i<10;i++)

{

scanf("%d",&a[i]) ;

}//close the for loop

for(i=0;i<10;i++)

{

count=1,pos++;

for(j=0;j<10;j++)

{

if(a[i]==a[j])

{

for(k=j;k<10;j++)

a[k]=a[k+1]

}//close the if

count++;

}//close the for loop

num[pos] = count;

}//close the for loop

for(i=0;i<pos;i++)

printf("Repeted Number of IN Arrary %d",num[i]);

}//close the main

User Avatar

Wiki User

15y ago

What else can I help you with?

Related Questions

Write a c program to accept a numbers and generate square root cube and exponential values?

write a c program to accept a number and generate a square root cube and exponential values


Write a program to accept 2 numbers and tell whether the product of the two number is equal to or greater than 1000?

C programm


Program to count the number of numbers in an array using 8085 microprocessor?

A program which is used to count the number of numbers in an array using a 8085 microprocessor is known as a assembly language program.


Do banks accept credit privacy numbers?

What is a credit privacy number???


Which numbers are integers?

All number accept 0, SCROLL DOWN


A c program for multiplication of two integers a and b?

/*PROGRAM TO ACCEPT TWO NUMBERS FROM THE USER AND PRINT THEIR MULTIPLICATION. */ #include&lt;stdio.h&gt; #include&lt;conio.h&gt; void main() { int a, b, c; // Declaration of Variables. Variables 'a' &amp; 'b' to hold first &amp; second number. And 'c' to hold result. clrscr(); // To clear the output screen every time program is executed. printf("\n Enter the first number : "); scanf("%d", &amp;a); // To accept the first number. printf("\n Enter the second number : "); scanf("%d", &amp;b); // To accept the second number. c = a*b; // Logic to get the product of the entered two numbers. printf("\n Multiplication of %d &amp; %d = %d", a, b, c); // Displaying result. getch(); // To hold the output screen. }


Write the program in qbasic and add two numbers?

Cls input "enter two no.s ",a,b sum=a+b print "sum = ";sum end


A program c plus plus on automorphic numbers or not?

how to write a program that counts automorphic number from 1 to 999


How do you write the pseudo codes that will accept 7 numbers and display their sum?

Start accept 7 number calculate sum print sum stop


Write a Shell program to find the smallest number from a set of numbers?

k


Write a program large number and small number among n numbers by using If statement?

12


What happens when text is entered into a number field?

A number field will not accept text. If it does accept text, then it cannot be a number field. Text fields can accept digits, but number fields cannot accept other text. They will only accept digits and other numeric components, like a decimal point for example. Sometimes you will define a field for numbers, such as phone number or code numbers to be text fields. In fact, that is what you should do for that type of data. You never do calculations with phone numbers, like adding them or getting averages, so they can be stored in text fields, as there is no need for them to be stored in number fields. Also, a zero at the start of a phone number, would disappear if entered into a number field, and it would also not allow things like spaces or brackets.