我正在遵循“ C编程语言”一章来打印“ Hello World”
#include <stdino.h>
main()
{
print("hello, world\n")
}
但是,当我运行它时遇到以下错误
$ cc start_c.c
xcrun: error: invalid active developer path (/Library/Developer/CommandLineTools), missing xcrun at: /Library/Developer/CommandLineTools/usr/bin/xcrun
我该如何解决问题?