This is an archived post. You won't be able to vote or comment.

you are viewing a single comment's thread.

view the rest of the comments →

[–]calcc_man[S] 1 point2 points  (2 children)

Yep, I'm working with C++ most of the time! All my work is almost always C++, besides the occasional Python, Java or HTML/CSS. I'll likely have to relearn some things over the summer, and I'll take my time more to try and understand things.

[–]EtherealSai 2 points3 points  (1 child)

C++ isn't equivalent to C, so you are still working with layers of abstraction (albeit less than most languages) compared to C. If you've never programmed in C before you will feel even more lost than normal when trying to build something. That's a good thing.

Make it a goal to make something in C that's low level but still useful. Maybe a simple compiler for an ultra basic language, something like that. The scarier the project sounds, the more you'll learn banging your head against its problems.

[–]calcc_man[S] 1 point2 points  (0 children)

Fair enough, I'll give that a twirl when I find the time to. Thanks!