How to generate random strings in C

Поделиться
HTML-код
  • Опубликовано: 19 май 2024
  • Source code can be found here:
    code-vault.net/lesson/fc94674...
    ===== Support us through our store =====
    code-vault.net/shop
    ===== Check out our website =====
    code-vault.net
    ===== Check out our Discord server =====
    discord.code-vault.net

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

  • @CuriousCyclist
    @CuriousCyclist Год назад +2

    Love these short and sweet videos! Very educative.

  • @__hannibaalbarca__
    @__hannibaalbarca__ 9 месяцев назад

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

  • @ajsarkj3539
    @ajsarkj3539 8 месяцев назад

    thank you bro ❣

  • @dimitrioskalfakis
    @dimitrioskalfakis Год назад

    neat!

  • @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.