- 1

C++ functions

If I use 3 functions, in what order does c++ call the functions? for example: #include <iostream> int func1(){ return 56; } int func2(){ return 2; } int func3(){ return 3; } int main(){ std::cout<<func1()-(func3()/func2())<<std::endl; return 0; }

7th Aug 2022, 11:41 AM
selim sultan çorbacı
selim sultan çorbacı - avatar
1 Answer
+ 3
7th Aug 2022, 11:55 AM
Jayakrishna 🇼🇳