Changeset 186 for Deliverables/D4.1
- Timestamp:
- Oct 15, 2010, 2:37:32 PM (10 years ago)
- Location:
- Deliverables/D4.1/GCC
- Files:
-
- 1 added
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
Deliverables/D4.1/GCC/EuclideanAlgorithm.c
r165 r186 1 #include "stdio.h"2 3 1 int gcd(int a, int b) 4 2 { … … 15 13 int a; 16 14 a = gcd(5, 15); 17 printf("%d", a); 18 return 0; 15 if(a == 5) 16 return 5; 17 else 18 return 7; 19 19 }
Note: See TracChangeset
for help on using the changeset viewer.