+ 1
What is difference between void and void main in c language
2 Respuestas
+ 6
void is a keyword in which the function is not returning any value whereas void main is a main function like int main
i hope it helped you :)
+ 1
void means the "function" will not "return value", and void main means the "main function" will not return value.
Hope I have answer your questions