Skip to content

natashaa15/C-progs-for-beginners

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

19 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

C programs for beginners

Add C language programs that are useful for beginners.

💫 fib.C

this program is for finding a printing a fibonacci series

  • this program is printing a fibonacci numbers of n numbers

🪓 split.C

this program simulates the split operation avalable in other language on string

>>> "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).

About

Just for fun

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • C 100.0%