Introducing Radical.sh

Forget Code launches a powerful code generator for building API's

Identifiers for float and long values in C

#include <stdio.h>
int main()
{
   int y = 7, z = 35;
   long longVar = 98456;
   float floatVar =  8.8;

   char *phraseFour = "Formatted: ";
   printf("%s %5d %10d  %10.5f\n",phraseFour,y,z,floatVar);
   return 0;
}