代码搜索:printf
找到约 10,000 项符合「printf」的源代码
代码结果 10,000
www.eeworm.com/read/345247/11824097
c ex4-3.c
#include
#include
void main() {
unsigned char xdata a[]=
{0x3f,0x44,0x32,0x54,0x66,0x56,0x99,0x88,0x77,0x11,0x34};
unsigned char i,j,t;
www.eeworm.com/read/345247/11824101
c ex4-6.c
#include
void sort (array, n)
int array[];
int n;
{
int i, j, k, t;
for (i=0; i
www.eeworm.com/read/345247/11824103
c ex4-2.c
#include
main() {
char c[10];
scanf("%s",c);
printf("%s\n",c);
while(1);
}
www.eeworm.com/read/345247/11824107
c ex4-1.c
#include
main() {
int f[20], i;
f[0]=0;
f[1]=1;
for (i=2;i
www.eeworm.com/read/259056/11824522
c main.c
#include
#include
int main()
{
char str[1000]; /*定义字符数组*/
int i, count[26] = {0};
scanf("%s", str); /*扫描输入的字符*
www.eeworm.com/read/345247/11824708
c ovl2.c
#include
#include
void func1() {
unsigned char i;
for(i=0;i
www.eeworm.com/read/345167/11834483
cpp stepwiseregression.cpp
//StepwiseRegression.cpp 逐步回归分析
#include //模板类输入输出流iostream标准头文件
#include //模板类valarray的标准头文件
#include //数据处理与回归分析头文件
#include //模板类Matrix头文
www.eeworm.com/read/155928/11837780
txt 7-12.txt
/* 范例:7-12 */
#include
int main()
{
/* 数组与指针 */
char sa[] = "this is a book";
char *ptr = "this is a book";
/* 结果输出至屏幕 */
printf("这是sa数组字符串 -->%s",sa);
printf("\n这是ptr指针