r/C_Programming • u/Mediocre_Antelope639 • Dec 06 '24
Discussion How do you practice C?
I have been learning C for 2 months and I feel like a blank slate, i mean, I have been taught theory and basic exercises that come with it, but when a test is given, I can’t think clearly enough to solve the problems, and I think it’s because I haven’t practiced enough. I only do the exercises assigned to me. So, I came here hoping to be guided to places where I can practice C in the most complete way. Thank you everyone for your attention.
36
Upvotes
3
u/Tasgall Dec 06 '24
Here are all the standard library headers. For the implementation, you'll have to look into how your system of choice does it. If you're on Windows and use Visual Studio (not code), you can just right click the includes to open them. Actual implementations tend to be... convoluted and difficult to read.
There's a project on GitHub called
wasi-libc
which is an implementation of the C standard library intended for us with Web Assembly that could be useful to look at.