请补充main函数,该函数的功能是:从键盘输入一组字符串,以‘*’结束输入,并显示出这个字符串。 例如,输入abcdefghi*,结果显示adcdefghi。 注意:部分源程序给出如下. 请勿改动主函数main和其他函数中的任何内容,仅在 main函数的横线上填入所编写的若干表达式或语句。 试题程序: include<stdio. h> define N 80 main () { iht i=-l, j=0; char str IN]; clrscr (); printf('/n Input a string /n'); do { i++; scanf(【 】); }while(【 】); printf ('/n**display the string** /n'); while (j<i) { printf (【 】); j++; } }