+ 1
Int main means
Int main()
2 odpowiedzi
+ 5
Int main() means that function main will return an integer value when main() gets over
Generaly it is zero
+ 4
int is the return type
main is the method name
So it's a main method that returns an int
Int main()