+ 1
Please tell me about void main(void)
how can I use it in c language
2 odpowiedzi
+ 5
void main(void) tells that there is a main() function declaration that do not return any value as it follows void keyword and void inside parenthesis () shows that main function not require any parameter or argument.
It may also be written as
void main()
+ 3
void main(void)
is same as
void main() used for calling main function