. Write a program to input 10 numbers into an integer array and
the frequency of each two-digit positive numbers present in it
Answers
Answered by
1
I'm using C to write program
main()
{
int num[10], i;
for(i=0, i<10, i++)
scanf("%d",&num[i]);
getch();
return 0;
}
Similar questions