C Programming and Technical Programming Program

find out the element from an array of numbers which repeats most number of time.
i.e if the array is {1,2,2,2,3} ans is {2}
if the array is {1,2,2,2,3,3,3} ans is {2,3}

Read Solution (Total 4)

C Other Question

main()
{
int i=5,j;
j = i++ + ++i + ++i + ++i;
printf("%d",i);
}
What happens when one types print("Hello"); instead of printf("hello");...
a.compilation error
b.Runtime error
c.Executes succesfully
d.None