printf的基本运用
printf函数是c程序中的输出函数其的用法是
#include <stdio.h>
int main ()
{
printf("xxx")
return 0
}
我们打印一个helloworld吧!
#include <stdio.h>
int main ()
{
printf("hello world")
return 0
}
在python中的运用
print("hello world")
下一课,我们继续学习。
标签:return,1.2,int,printf,world,main,hello From: https://blog.51cto.com/u_16985041/11898639