I Want to connect End() and Mainmenu()?????????
I Want to connect End() and Mainmenu()
In the functionname END() I will call MAINMENU2(). Then Inside MAINMENU2(), I Will Call Mainmenu1(). Inside Mainmenu1(), I Will call Mainmenu()But the error is the 3 functionname() identifier not found.
MainMenu(){
//do something...
}
Mainmenu1(){
Mainmenu();
}
MAINMENU2(){
Mainmenu1();
}
END(){
MAINMENU2();
}
void main(){
END();
}