Reading CSV Files in C (with real-world data) -- No Need to Know How Many Lines Are There!

Поділитися
Вставка
  • Опубліковано 11 лют 2025

КОМЕНТАРІ •

  • @agnarrenolen1336
    @agnarrenolen1336 22 дні тому

    But if your strings contain a comma?

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

    some of the things you have to do to extract file information in C are so janky lol. Thanks so much for the tutorial!

    • @CompSciwithDrVictor
      @CompSciwithDrVictor  Рік тому +1

      Welcome! Yes I agree that the steps one has to take in extracting information from a file are quite labourous in C. I think it's partly because C is a "low-level language" which provides lots of control but at the cost of more complex code.
      I'm sure there are libraries streamlining this process. Though I want to explain the steps from the ground up. For quick setup and simple file I/O I'd suggest considering languages like Python.