Hi guys trying to use two main() and getting this error multiple definition of main(). I renamed my main functions then why is this error and also first defined here for my prin
It's not possible for a C program to have more than one main() in it. Also, main() should be declared as an int and return an integer value (usually 0).