Factsheet
Why did you learn C? I'm interested in programming because I enjoy building things (websites, apps, desktop apps, games, etc), what sort of things can I do with C? I've heard it's an extremely fast language. What are things you've made with the language? Do you enjoy using it?
I’ve seen a lot of comments around the internet people saying things “C teaches you how computers work” and “implement DSA in C and it makes a huge difference” and etc. Is C like the Latin of the programming languages? What is so special about C?
I'm a begginer in C the only thing I wrote is hello world with printf, so I'm sorry if this is a dumb question but what can you actually do/make in C? I tried finding it on Google but the only thing I found was operating systems which I doubt I will be making the new windows anytime soon. :p So I would appreciate if someone could give me some pin points on this.
str_var = "A string" count = 0 for c in str_var: count += 1 print(count)
can anyone explain what the "c" stands for in this? Does it stand for character? (Code came from a learning software I am using)
Since I’ve started exploring C, I’ve realized that many programming languages rely on libraries built using C “bindings.” I know C is fast and simple, so why don’t people just stick to using and improving C instead of creating new languages every couple of years?