Introducing Radical.sh

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

print string in C

This program print a string. String can be printed by using various functions such as printf, puts.
#include <stdio.h>
 
main()
{
    char array[20] = "Hello World";
 
    printf("%s\n",array);
 
    return