C: explain how ft1() and ft2() in the following code can returndifferent values:
int k();
int kt1() {return k() + k(); }
int kt2() {return 2 * k(); }
C: explain how ft1() and ft2() in the following code can return different values: int k(); int kt1() {return k() + k();
-
- Site Admin
- Posts: 899603
- Joined: Mon Aug 02, 2021 8:13 am