What data do void variables hold? Doesn't void mean empty, so the variable would hold nothing?
Why would you want this unless you're using it as a function pointer?
Why would you want this unless you're using it as a function pointer?
int func(void); ... (void) func(); ...
; (void) 0;
Comment