I need help To comment this program for my college work
#include <stdio.h>
int main()
{
int a;
a = 0;
while (a <= 300)
{
printf("%4d degrees F = %4d degrees C\n",
a, (a - 32) * 5 / 9);
a = a + 20;
}
return 0;
}