What is void main? Why do we use void main in C program
Answers
Answered by
1
Answer:
BELOW IS THE ANSWER
Explanation:
The void main() indicates that the main() function will not return any value, but the int main() indicates that the main() can return integer type data. When our program is simple, and it is not going to terminate before reaching the last line of the code, or the code is error free, then we can use the void main().
MARK ME AS BRAINLIEST PLZZZZZZZZ
Similar questions