Factsheet
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.
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?
What resources did you use to learn C ? As a beginner to C, I'm finding it really difficult to pick up the language from just reading about the syntax rules. Are there any good resources / books / youtube videos to not only learn the syntax, but also the more advanced concepts (pointers, scope, etc)?
Edit: I know learning how to code takes time, but I'd prefer resources that wouldn't be so time consuming. More of a resource that I could approach when I'm stuck on a single topic
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?
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)