C Programming and Technical Programming Program

main()
{
int i=5,j;
j = i++ + ++i + ++i + ++i;
printf("%d",i);
}

Read Solution (Total 33)

C Other Question

main()
{
main();
}

A. 1
B. 0
C. Compile time error
D. Run time Error
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}