I recently moved from Java for C++ but now when I am writing my application I'm not interested in writing everything of the code in the main function I want in main function to call another function but this other function is in another .cpp file.
Let me explain better if you wouldn't understand:
I have one file: main.cpp
inside it I have main function.
I have the second file: second.cpp
inside I have a function called second()
I want to call this function called second()
from my main function..
Any help?