请补充 main 函数,该函数的功能是:从一个字符串中截取前面若干个给定长度的子字符串。 其中, str1 指向原字符串,截取后的字符存放在 str2 所指的字符数组中, n 中存放需截取的字符个数。 例如:当 str1= “ cdefghij ”,然后输入 4 ,则 str2= “ cdef ”。 请勿改动主函数 main 和其他函数中的任何内容,仅在 main 函数的横线上填入所编写的若干表达式或语句,并将横线去掉,同时确保答案与前后字符之间至少保留一个空格。 #include #define LEN 80 main() { char str1[LEN],str2[LEN]; int n,i; printf("Enter the string:\n"); gets(str1); printf("Enter the position of the string deleted:"); scanf( ______ ); for(i=0;i ______ str2[i]='\0'; printf("The new string is:%s\n", ______ ); }