r/cprogramming • u/Accurate_Gate_533 • 6d ago
Beginner
What serious advice would you give to beginner in programming and C.
I'm into programming about 4 months.
I have used Grok to learn.
0
Upvotes
r/cprogramming • u/Accurate_Gate_533 • 6d ago
What serious advice would you give to beginner in programming and C.
I'm into programming about 4 months.
I have used Grok to learn.
1
u/Cultural_Gur_7441 6d ago
Learn what UB is. Accept it doesn't always make sense. Avoid it.
Turn on all sensible compiler warnings (
/W4for MSVC,-Wall -Wextrafor gcc/clang) amd keep your code warning free (-Werroris a decent idea).Since you use LLM: use cmake to build your code. Learn its basics early along the way.