What's new

Closed Tama ba ang pag call using bridge?

Status
Not open for further replies.

Kiss21

Eternal Poster
Joined
Oct 24, 2015
Posts
554
Reaction
2,085
Points
467
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.

any suggestion mga master :D Hehehe
 
Last edited:
?????????
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.
 
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.

try nyo po icheck names ng function baka po may typo or yung order ng declaration ng functions di maayos
Code:
MainMenu(){
    //do something...
}
Mainmenu1(){
    Mainmenu();
}
MAINMENU2(){
    Mainmenu1();
}
END(){
    MAINMENU2();
}

void main(){
    END();
}
 
Status
Not open for further replies.

Similar threads

Back
Top