Introducing Radical.sh

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

printf - Print Multiple Arguments in C

#include <stdio.h>
int main(void){
 printf("Hi %c %d %s", 'c', 10, "there!");
return 0;
}