bgc_usl_c_1.pdf
1.1 MB
#CProgramming, Beej document for learning how to code C.
bgclr_usl_c_1.pdf
1.3 MB
#CProgramming, BEEJ document, a great introduction to C - library reference
#cafelinux @TCafeLinux
❤5
_Bool in C 👨💻
Do we have BOOL in C ?
We do have! and it is widely used in modern embedded projects for better readability, btw many low-level codes still use 0/1 instead of BOOL due to older compiler support, or coding standards.
Since C99:
#cprogramming #notes #boolean @tcafeLinux
Do we have BOOL in C ?
We do have! and it is widely used in modern embedded projects for better readability, btw many low-level codes still use 0/1 instead of BOOL due to older compiler support, or coding standards.
Since C99:
#include <stdbool.h>
bool flag = false;
if (!flag) {...}
bool is a MACRO for _Bool
You can also use _Bool like this:
_Bool flag = false;
#cprogramming #notes #boolean @tcafeLinux
Please open Telegram to view this post
VIEW IN TELEGRAM
bgipc_usl_c_1.pdf
337.1 KB
Unix Interprocess Communication
A brief introduction to unix programming and IPC.
#BEEJ #CPROGRAMMING @TCAFELINUX👩🚀 👩🚀 😈
Please open Telegram to view this post
VIEW IN TELEGRAM
Electronics_for_Dummies_Gordon_McComb,_Earl_Boysen_Z_Library.pdf
19.3 MB
Electronics for Dummies
- Gordon McComb
Getting started with Electronics from scratch.
#electronics #cprogramming #embedded @TCAFELINUX👨💻 📱 🥺
Please open Telegram to view this post
VIEW IN TELEGRAM
❤🔥4💔1🗿1