编程为什么没有运行求大佬帮忙
#include<studio.h>int main()
{
printf<"(hello world\n");
return 0 ;
}
2021-08-17 07:04
2021-08-17 08:59
程序代码:#include <stdio.h>
int main( void )
{
printf( "hello world\n" );
return 0 ;
}
2021-08-17 09:06