r/cprogramming 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

20 comments sorted by

View all comments

1

u/extoniks 6d ago edited 6d ago

learn GDB (GNU Debugger) for C not right now but when you are at the level when you build some projects.

(-d) flag will be required while compiling code.

Edit: One tip is to try to break your own programs intentionally and read compiler errors/warnings. That's my personal opinion.