/
niceSOFT
/
swig
Обзор
Документация
Войти
/
niceSOFT
/
swig
Код
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
Examples/c/simple/example.c
16 строк
247 B
Maciej Drwal
Exceptions support for C. exception_order test shows how to use type information to achieve correct catching order. Examples cleanup.
17 июл 2008, 04:52
17 июл 2008, 04:52
88facfd
Код
Авторство
О чём код?
/* File : example.c */ /* A global variable */ double Foo = 3.0; /* Compute the greatest common divisor of positive integers */ int gcd(int x, int y) { int g; g = y; while (x > 0) { g = x; x = y % x; y = g; } return g; }