0
Can someone explain the connection between the code in void() and int main()?
1 ответ
+ 1
void is not a function. It is a keyword to tell the datatype where no value is avilable. int main() indicates the return type is integer. whereas void main() indicates, function doesn't return any value.