Introducing Radical.sh

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

Ascii Example in C

#include <stdio.h>

int main( )
{
 // %c prints character (ASCII) equivalent of 89
 printf("%c",89); 
}



Output of the above code will be
Y