שפת C/פונקציות: הבדלים בין גרסאות בדף

תוכן שנמחק תוכן שנוסף
אין תקציר עריכה
שורה 14:
int c, f;
 
for (c = 0; c <= 40; c += 4)
{
f = 1.8 * c + 32;
שורה 95:
int c, f;
 
for (c = 0; c <= 40; c += 4)
{
f = 1.8 * c + 32;
שורה 121:
return;
}
for (c = 0; c <= 40; c += 4)
{
f = 1.8 * c + 32;
שורה 191:
int c, f;
 
for (c = 0; c <= 40; c += 4)
{
f = celsius_to_fahrenheit(c);
שורה 222:
int c;
 
for (c = 0; c <= 40; c += 4)
printf("%d in Celsius is %d in Fahrenheit\n", c, celsius_to_fahrenheit(c));
 
שורה 396:
int c, f;
 
for (c = 0; c <= 40; c += 4)
{
f = 1.8 * c + 32;
שורה 435:
int c, f;
 
for (c = 0; c <= 40; c += 4)
{
f = 1.8 * c + 32;
שורה 479:
int c, f;
 
for (c = 0; c <= 40; c += 4)
printf("%d in Celsius is %d in Fahrenheit\n", c, (int)celsius_to_fahrenheit(c));
}