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