以下程序(程序左边的数字为行编号)1#include<str.h>2#include<stdio.h>3main()4{char s[]="string";5puts(s);6strcpy(s,"hello"); 7printf("%3s\n",s);}题目中( )
A.没有错
B.第1行有错
C.第6行有错
D.第7行有错
出自:国家开放大学程序设计基础