Esempio n. 1
0
File: main.c Progetto: altock/dev
int main(int argc, const char * argv[]) {
    int totalWeight = 10;
    int gibletsWeight = 1;
    int turkeyWeight = totalWeight - gibletsWeight;
    showCookTimeForTurkey(turkeyWeight);
    return 0;
}
Esempio n. 2
0
int main(int argc, const char * argv[])
{

    // insert code here...
    int totalWeight = 10;
    int glibetsWeight = 1;
    int turkeyWeight = totalWeight - glibetsWeight;
    showCookTimeForTurkey(turkeyWeight);
    return 0;
}