>>25754961
You're talking about how you gamed the system to get a job, not about how to be a good programmer.
Good programmers don't have a language that was arbitrarily chosen for them that they then build around, they look for good languages. Design patterns are for programmers who can't think for themselves, good programmers simply have design.
There is plenty of reason to use C for any of many tasks. It's portable, easy to use, efficient, no language has better tooling, you can easily write programs that feel native everywhere with it, has lots of quality static analyzers like GCC's -fanalyzer and Clang's static-build, etc. These are things that make a language good and qualities that any use case wants, any language that does well with them is desirable for anything. You're saying there's no reason to use C outside the use cases you listed because that's where they're used in the professional world, but I don't care about the professional world and what they use and where, I care about the world of programs that are good.
>>25754962
For "fun" it depends a lot on what you like.
Lots of math nerds really like fuctional languages.
I don't have much experience with functional languages, it's basically only Lisp, and from what I hear it's the least functional of functional languages, maybe you'd do Haskell or something like that if you like math, I don't know.
Some just want to grind a skill due to lack of anything better to do like me will try to focus on getting really good at a small subset of things, I have tried many languages and simply dropped them because when I learned they sucked I no longer had a reason to go any further, and I've gotten decent at comparatively few languages.
C really is a requirement for getting good. It's going to be the definition of a language that can produce quality binaries that you will compare everything else to. Rust is also good here. Then you'd also want to learn good tooling like Meson, Helix, documentation tools like mandoc and CommonMark, all the major operating systems, read books about style, articles about random tech subjects that can help you program better, grind open sores to get practical experience, etc, it's what I do.
Some people are the opposite as far as number of languages are concerned and simply go ahead and learn as many languages as possible because they like doing that. If you simply like learning languages, you will probably like doing significantly different ones instead of a billion C derivatives which dominate the world today, look for older languages because years ago the ecosystem had more variety.
Some people like to build stuff, and then they care more about techniques for learning how to write complex programs and reading books with the entire theory and practice of how to write a particular kind of program (compilers, daemons, websites, etc) and then go ahead and write them. There are books about that, web articles, and the like. For building stuff, you probably want a well-structured language that lends itself to brief programs so you can think less about programming and more about building like Rust.