Compute the Average of an Array | C Programming Example

แชร์
ฝัง
  • เผยแพร่เมื่อ 4 ม.ค. 2025

ความคิดเห็น • 25

  • @serred9452
    @serred9452 2 ปีที่แล้ว

    Really like your explanation on how the program works and then you give an improvement to that program. Keep it up

    • @PortfolioCourses
      @PortfolioCourses  2 ปีที่แล้ว

      Thank you very much for the kind words! :-D

  • @chandlerlewis3309
    @chandlerlewis3309 3 ปีที่แล้ว

    How this video only has 180 views, I have no idea! Great shit my dude! Helped me a lot!

  • @ya2863
    @ya2863 ปีที่แล้ว

    This exercise series is just what I needed, thanks a lot ^-^

    • @PortfolioCourses
      @PortfolioCourses  ปีที่แล้ว +1

      You’re welcome, I’m glad you are finding it helpful! :-)

  • @pedroivanvaltierra8166
    @pedroivanvaltierra8166 ปีที่แล้ว

    Thank you for this tutorial, was really useful, and you are very good teaching the process!

    • @PortfolioCourses
      @PortfolioCourses  ปีที่แล้ว

      You're welcome Pedro, I'm glad the tutorial was useful for you! :-)

  • @vynguyenthao1555
    @vynguyenthao1555 3 ปีที่แล้ว

    your videos help me a lots !!!

  • @ambelijahdavidokoh7594
    @ambelijahdavidokoh7594 2 ปีที่แล้ว

    please what's the name of the software/app used for this programming language

    • @PortfolioCourses
      @PortfolioCourses  2 ปีที่แล้ว

      In this video I am using the text editor Visual Studio Code and the gcc compiler on the terminal of Mac OS. :-)

  • @ayzikdig1983
    @ayzikdig1983 ปีที่แล้ว

    if i use scanf from array i need to srop the & as in a[i] instead of &a[i]?

  • @justcurious1940
    @justcurious1940 ปีที่แล้ว

    Thanks ,
    double avg(double array[], int length){
    double sum = 0;
    for(int i = 0; i < length ; i++){
    sum+=array[i];
    }
    return sum/length;
    }

  • @eze6437
    @eze6437 3 ปีที่แล้ว

    what if the the array is not given? i mean the user will input the numbers in array?

    • @PortfolioCourses
      @PortfolioCourses  3 ปีที่แล้ว

      We actually just published a video on how to do that, you could do this before computing the average: th-cam.com/video/5nyMb7hJ7Xs/w-d-xo.html

  • @hasson2349
    @hasson2349 3 ปีที่แล้ว

    Can you do the same but with recursion?

    • @PortfolioCourses
      @PortfolioCourses  3 ปีที่แล้ว +1

      Yes we can! :-) I've made a video for solving this problem here: th-cam.com/video/i0pOPx5Xltw/w-d-xo.html

  • @thomastuchel8803
    @thomastuchel8803 2 ปีที่แล้ว

    very helpful!

    • @PortfolioCourses
      @PortfolioCourses  2 ปีที่แล้ว

      I’m very glad to hear it was helpful for you Thomas! :-)

  • @moorasfashionworld9527
    @moorasfashionworld9527 3 ปีที่แล้ว

    Thank you

  • @stacyhackney6100
    @stacyhackney6100 2 ปีที่แล้ว

    Thank you