Add C language programs that are useful for beginners.
- this program is printing a fibonacci numbers of n numbers
>>> "this is a program".split()
>>> ["this", "is", "a", "program"]
- this example is from python language. here you can see it returns linked list of strings
same as I try to built split function in C. which return linked list of struct Word.
-
Word has metadata like word, len, ind, previous and next struct Word address
-
this file contains functions like subString, split, strip which is missing in core C language in String (array of char).