Goto a other function

Title says it all but heres some sample code

1
2
3
4
5
6
7
8
  int main() 
  {
/**Randome code**/
  }
  
   int se()
 {
 }
http://www.cplusplus.com/doc/tutorial/functions/

1
2
3
4
5
6
7
8
9
void printHi()
{
    std::cout << "Hi!";
}

int main()
{
    printHi();
}
Topic archived. No new replies allowed.