Introducing Radical.sh

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

Hello World using string in C

#include <stdio.h>
 
int main()
{
  char string[] = "Hello World";
 
  printf("%s\n", string);
 
  return 0;
}