String C Tutorial

#include 
int main ( )
{
    char s1[6] = "abcde ";
    print_str(s1);
}
int print_str(char s1[]) {
    printf("%s \n", s1);
}