Split Numbers

Status
Not open for further replies.
lol yeah i know. The thing is C is a um... widely used but no good general info. Like i know the struction and how functions works and stuff. But the other general things are hard to find good information on. Can you recommend some links or PDFs or something to refer to and learn from.
 

hi atom,
There are these:
https://www.tenouk.com/
https://www.microchipc.com/sourcecode/
https://www.cplusplus.com/doc/tutorial/

Wish I could help but I dont speak C-hinese..

Sorry Mike, have a nice day.
 
Last edited:
WOW! thanks im learning alot. Especially about pointers. They are cool. In how they work.

I never knew exactly how it worked lol.

Anyway ill keep reading... Thanks again

Also found this nice snippet:
https://www.microchipc.com/HiTechCFAQ/index.php#_Toc475127508
Code:
#define bit_set(var,bitno) ((var) |= 1 << (bitno))
#define bit_clr(var,bitno) ((var) &= ~(1 << (bitno)))
 
Last edited:
Status
Not open for further replies.
Cookies are required to use this site. You must accept them to continue using the site. Learn more…