Find the Maximum Number in an Array | C Programming Example

preview_player
Показать описание
Рекомендации по теме
Комментарии
Автор

Thanks again for all your work. I greatly enjoy learning through your practical examples.

logos_
Автор

one of the best explanation i have ever seen, a BIG THANK YOU sir

sir pls make a video on Bits operators coding problems C language

kfiruler
Автор

Nice explanation, Thanks :
int max_value(int array[], int length){
int max = array[0];
for(int i = 1 ; i < length ; i++){
if(array[i] > max)
max = array[i];
}
return max;
}

justcurious
Автор

I think that you explained it better than anyone!!!
Thank you!!

stavrosv
Автор

Hi.., i think when you call a the function find_max you don't need to write it size in the settings.. btw thanks for this amazing video..

khalil
Автор

I have a question how can we show the count of occurrences of the max number .. for example if we entered 10 twice i want my code to write that the max is repeated twice

neutral._.
Автор

sir im sorry for disturbing but i would like to know if we print anything from the text file in the console window i want to know how can we change the meaning of it example h means q and i means o or u something like this in c++ would really be helpful for my console graphics engine project

FrostGamingHype
Автор

Friend Which IDE are you using. Editor...? Thanks for your attention.

souzaneto