Yes, of course you can call functions from inside the main() function. If you couldn't, then how could you call any functions from anywhere, ever?
If you're asking whether or not you can call the main() function from a function, then no, you can't. It's illegal to explicitly call main() from anywhere.