<p>(8 pts) Consider the following C codes to compute the gcd of twointegers.</p><p style="margin-left:.5in;">/// code 1</p><p style="margin-left:1in;">#include <stdio.h></p><p style="margin-left:1in;">int gcd(int a, int b) {</p><p style="margin-left:1in;">while (a != b) {</p><p style="margin-left:1in;">if