Read All File Lines Into A Dynamically Allocated Array Of Strings | C Programming Example

  Рет қаралды 12,920

Portfolio Courses

Portfolio Courses

Күн бұрын

Пікірлер: 47
@Majkieboy
@Majkieboy Жыл бұрын
Very happy to have found these, not enough C content around these days. Good job.
@PortfolioCourses
@PortfolioCourses Жыл бұрын
Thank you, I'm glad you found the channel too! :-)
@MrBolcetik
@MrBolcetik Жыл бұрын
I am currently an active student in Software Engineering, and every time you post a video it always related with the content that I am currently dealing with 😂. Thank you for this great video!
@PortfolioCourses
@PortfolioCourses Жыл бұрын
You're very welcome! :-) And I'm really glad to hear these videos are relevant to what you are learning as a student... helping students is the biggest reason why I like making these videos.
@MrBolcetik
@MrBolcetik Жыл бұрын
@@PortfolioCourses I was coding a function called get_next_line and this is just what i was needed 😊
@fifaham
@fifaham Жыл бұрын
Very helpful and useful, thank you Kevin. The good things about microcontrollers is that they can have their built-in memory expanded by connecting them to external memory, and that can be very large. A multiple blocks of memory chips can store large files of data and text for processing them at later time.
@PortfolioCourses
@PortfolioCourses Жыл бұрын
You're welcome Firas! :-) And thank you for sharing this information with everyone too.
@edenng8431
@edenng8431 Жыл бұрын
Fantastic! Great details! Thank you for updating the C series.👍
@PortfolioCourses
@PortfolioCourses Жыл бұрын
You're welcome Eden, I'm glad you enjoyed it! :-)
@arthur_p_dent4282
@arthur_p_dent4282 Жыл бұрын
Your content is second to non. Thanks you so much.
@PortfolioCourses
@PortfolioCourses Жыл бұрын
You’re very welcome Arthur, and thank you for this kind feedback! :-)
@dev_ression
@dev_ression Жыл бұрын
great explanation bro!
@PortfolioCourses
@PortfolioCourses Жыл бұрын
Thank you for the positive feedback, I’m glad you enjoyed the explanation! :-)
@dev_ression
@dev_ression Жыл бұрын
@@PortfolioCourses no problem!
@naboulsikhalid7763
@naboulsikhalid7763 9 ай бұрын
Great content, I think everything is mentioned here. Thank you KEVIN
@richarddaygm
@richarddaygm 7 ай бұрын
It is obvious but worth pointing out sizeof(char) is always 1, unlike sizeof(char *) which is the size of the pointer. So in the realloc, there is no point in timesing by sizeof(char), even though it would be more symmetrically pleasing!
@idanmariani8601
@idanmariani8601 Жыл бұрын
thank you very much like allways.. i wish everyone will get to know your awsome channel and have tons of subscribed your the best teacher ever.. :)
@PortfolioCourses
@PortfolioCourses Жыл бұрын
Thank you very much for the support Idan! :-)
@bettyswunghole3310
@bettyswunghole3310 3 ай бұрын
"Stack Overflow" strongly recommends *_against_* using statements like "if (feof(file))" for reasons I didn't fully understand...
@sgarcia1070
@sgarcia1070 Жыл бұрын
I have two quick questions, what is the purpose of using the value of 1024 as suppose to another value, and my second question is does free() erase what’s in the string?
@PortfolioCourses
@PortfolioCourses Жыл бұрын
There is no particular reason. It's a big round number that's divisible by 2 (divisibility by 2 can 'play well' with computers in general, compared to something like 537 or something). Another strategy we could use that may be better in some circumstances is to double the amount of memory allocated for the block each time. I've taken an assumption that this would be overkill and that more conservatively increasing the size by 1024 will be OK. And no, free() does not erase what's free'd. Those are both great questions by the way! :-)
@dogdog5994
@dogdog5994 Жыл бұрын
A little suggestion. You made a video about threading in C using the POSIX pthread library. I suggest videos about C11 threads and maybe more videos about POSIX threads (pthread).
@PortfolioCourses
@PortfolioCourses Жыл бұрын
It’s funny you’re reading my mind haha, I’ve thought of doing more posix thread topics related to things like mutexes, passing arguments to functions, etc. And C11 threads is a topic I want to cover for sure too! :-)
@dogdog5994
@dogdog5994 Жыл бұрын
POSIX pthread vs. C11 threads and the differences would be an interesting topic too. Various compilers have supported pthread for quite a long time but it's not a part of the official C Standards. There was no official threads in the C Standard until C11 as far as I know.
@PortfolioCourses
@PortfolioCourses Жыл бұрын
My understanding is that "underneath" C11 threads are implemented as pthreads in most platforms that support pthreads, and that pthreads are more widely used due to supporting more features even though C11 threads are more portable.
@yamithere_
@yamithere_ Жыл бұрын
I just wanna ask what is the difference between having brackets after the for loop and nesting the next for loop compared to the ones without the brackets?
@PortfolioCourses
@PortfolioCourses Жыл бұрын
When we use brackets, we an have multiple statements in the "body" of the for loop. Without brackets, we can only have a single statement. :-)
@yamithere_
@yamithere_ Жыл бұрын
@@PortfolioCourses Thank you!
@PortfolioCourses
@PortfolioCourses Жыл бұрын
You're welcome! :-)
@ziwaang2250
@ziwaang2250 Жыл бұрын
Great video! For a 2D string array, would it then be "char ***" ?
@PortfolioCourses
@PortfolioCourses Жыл бұрын
Yes, that should work, and what you would have would be a 2D array of pointers to strings essentially. :-)
@ziwaang2250
@ziwaang2250 Жыл бұрын
@@PortfolioCourses Thank You!
@pragunmike1642
@pragunmike1642 Жыл бұрын
This is fab. Thank you 🙌🏻🙌🏻🙌🏻
@PortfolioCourses
@PortfolioCourses Жыл бұрын
You’re welcome, I’m glad you enjoyed it! :-)
@LMZ914
@LMZ914 6 ай бұрын
Thank you sir you are the best
@studentofedison421
@studentofedison421 8 ай бұрын
why **line instead of *line . why line is a pointer to pointer to char instead of pointer to char
@Mo3au4HbIu_Ba3oH
@Mo3au4HbIu_Ba3oH Жыл бұрын
I was looking for some copper, but found the real gold
@PortfolioCourses
@PortfolioCourses Жыл бұрын
I’m glad you enjoyed it! :-)
@ramakrishna4092
@ramakrishna4092 Жыл бұрын
Wonderful explanation sir and congratulations for 22k sub...👏👏👏 I have doubt here .. typedef int (*function)(int a, int b); this is one way I know typedef the function pointer but I'm getting confused how this is acting as function pointer Below syntax can you pls explain this . "typedef int function(int a, int b);" I have also found this code sample using the above syntax #include int add(int a, int b) { return a + b; } int sub(int a, int b) { return a - b; } typedef int function(int a, int b); int call_function(function *p, int a, int b) { return p(a, b); } int main(void) { int sum; sum = call_function(&add, 10, 5); printf("add: %d ", sum); sum = call_function(&sub, 10, 5); printf("sub: %d ", sum); return 0; }
@PortfolioCourses
@PortfolioCourses Жыл бұрын
Hi Rama, it looks like this line here: typedef int function(int a, int b); is creating "function" as a typedef, effectively a synonym, for a function that returns an int and accepts two ints as arguments. And then here: int call_function(function *p, int a, int b) { call_function accepts a pointer to a function like this as an argument, which is supplied when it is passed the address of add and sum. :-)
@jerryli5555
@jerryli5555 Жыл бұрын
The getline() Function can read a whole line
@IanHouchin
@IanHouchin Жыл бұрын
So does fgets. But getline() is a bit more complicated than fgets.
@yoruichi5802
@yoruichi5802 Жыл бұрын
I tought it was forbiden to exit a loop with a break
@PortfolioCourses
@PortfolioCourses Жыл бұрын
No, it’s not forbidden, it’s part of why it’s in the language. :-) Maybe a teacher would advise a student not to use break so students learn to use loops “the normal way”. But using breaks in a loop is normal in practice.
@yoruichi5802
@yoruichi5802 Жыл бұрын
@@PortfolioCourses true!
@PortfolioCourses
@PortfolioCourses Жыл бұрын
@@yoruichi5802 🙂
@YoungOrbital
@YoungOrbital 9 ай бұрын
while( !feof(file) )
Dynamically Allocate An Array Of Structs | C Programming Tutorial
15:11
Portfolio Courses
Рет қаралды 37 М.
99.9% IMPOSSIBLE
00:24
STORROR
Рет қаралды 29 МЛН
Quando A Diferença De Altura É Muito Grande 😲😂
00:12
Mari Maria
Рет қаралды 42 МЛН
To Brawl AND BEYOND!
00:51
Brawl Stars
Рет қаралды 16 МЛН
Dynamically Allocate Memory For An Array Of Strings | C Programming Example
12:10
why do header files even exist?
10:53
Low Level
Рет қаралды 439 М.
Qsort in C
15:40
Programming with Sikander
Рет қаралды 31 М.
the cleanest feature in C that you've probably never heard of
8:13
All Rust string types explained
22:13
Let's Get Rusty
Рет қаралды 187 М.
Dynamic Arrays in C
11:46
Dylan Falconer
Рет қаралды 72 М.
arrays are weird
6:57
Low Level
Рет қаралды 115 М.
Read And Write An Array Of Structs To A Binary File | C Programming Example
18:27
Reading and Writing from Binary Files in C!
20:26
Astrocode
Рет қаралды 13 М.
String In Char Array VS. Pointer To String Literal | C Programming Tutorial
9:58
99.9% IMPOSSIBLE
00:24
STORROR
Рет қаралды 29 МЛН