Skip to content

Latest commit

 

History

History
14 lines (11 loc) · 337 Bytes

void.md

File metadata and controls

14 lines (11 loc) · 337 Bytes

Void

Declaration

void main(void);
int aFunction(void);
void bFunction(float);

Description

void is used when a function have no parameters or when a function does not return a value.

See Also

void, bool, int, float