A simple celsius to kelvin conversion table in C


#include<stdio.h>
main()
{
float c,k;
printf("conversion table\n");
for(c=300;c>=0;c=c-20){
k=c+270;
printf("%.2f\t%.2f\n",c,k);
}
}
view raw gistfile1.c hosted with ❤ by GitHub

Comments

Popular Posts