How to generate random strings in C

Поділитися
Вставка
  • Опубліковано 29 вер 2024

КОМЕНТАРІ • 6

  • @CuriousCyclist
    @CuriousCyclist Рік тому +2

    Love these short and sweet videos! Very educative.

  • @__hannibaalbarca__
    @__hannibaalbarca__ Рік тому

    In c++ there are very good random library.
    Also in c we can create a function that generate pseudo randomly number

  • @ajsarkj3539
    @ajsarkj3539 Рік тому

    thank you bro ❣

  • @wizrom3046
    @wizrom3046 Рік тому

    Why use rand() %
    When you could have used random(x) ??

    • @CodeVault
      @CodeVault  Рік тому +5

      As much as possible I try to provide solutions that use functions from the standard library. The random() function, unfortunately, is not part of the standard library and only exists in some operating systems.

  • @dimitrioskalfakis
    @dimitrioskalfakis Рік тому

    neat!