What is the difference between int main and void main
Answers
Answered by
1
Answer:
int Main : its Just means that the datatype 'int' is returning some value.(integer type only it will not return any float or char type value).
void Main : its means that datatype 'void' is not returning anything. it is also called as 'Null'.
Similar questions