是否可以在c语言中,做出python这样的功能
for i in range (1,100):
print(p(i))
for (int i = 1; i <= 100; i++) { printf("%d", p(i)); }
是这个意思么?