Consider the following C function definition: int Trail (int a, int b, int c) { if ((a >= b) && (c < b)) return b; else if (a >= b) return Trail (a,c,b); else return Trail (b,a,c); } The function Trail:
Integrate the following functions. ∫ sin (ax+b)cos (ax+b)dx.