Dot Product | C Programming Example

Поделиться
HTML-код
  • Опубликовано: 1 дек 2024

Комментарии • 5

  • @justcurious1940
    @justcurious1940 10 месяцев назад +1

    Nice.

  • @CarloObrad
    @CarloObrad 2 года назад

    Thx i needed this

  • @РоманПолищук-л8щ
    @РоманПолищук-л8щ 9 месяцев назад

    double la_ddot(double *x, double *y, const size_t n) {
    const double *x_end = x + n;
    double dot = 0.0;
    while (x < x_end)
    dot += *x++ * *y++;
    return dot;
    }
    🤪c-style

    • @Αλέξανδρος56
      @Αλέξανδρος56 9 месяцев назад

      Does it do it faster or is it just a more confusing way to write it ?