代码搜索:printf

找到约 10,000 项符合「printf」的源代码

代码结果 10,000
www.eeworm.com/read/250053/12439358

c err03_01.c

#include main() { int a; char ch; ch="A"; scanf("%d",a); printf("%c+%d=%c\n",ch,ch+a); }
www.eeworm.com/read/250053/12439427

c exp09_01.c

#include struct marks { float grades[5]; float average; }; void main() { int i; struct marks m; printf("input the grades of five course:\n"); for(i=0;i
www.eeworm.com/read/250053/12439450

c p1.c

/* this is the p1.c */ #include int a[10]={0}; void getdata(void); void main() { int k; getdata(); for(k=0;k
www.eeworm.com/read/250053/12439485

c exp07_05.c

#include #include #include main() { int *p; int num,i; int maxindex,minindex; printf("input the number of student:"); scanf("%d",&num); p=(int *)mal
www.eeworm.com/read/148696/12439903

c memcmp.c

#include #include void main(void) { char *a = "AAA"; char *b = "BBB"; char *c = "aaa"; printf("Comparing %s and %s with memcmp %d\n", a, b, memcmp(a, b,
www.eeworm.com/read/148696/12439983

c address.c

#include void main(void) { int count = 1; float salary = 40000.0; long distance = 1234567L; printf("Address of count is %x\n", &count); printf("Address of salary i
www.eeworm.com/read/148696/12440320

c first.c

#include void main(void) { printf("Jamsa\'s C/C++ Programmer\'s Bible!"); }
www.eeworm.com/read/148696/12440345

c syntax.c

#include void main(void) { printf("Jamsa\'s C/C++ Programmer\'s Bible!); }
www.eeworm.com/read/148696/12440363

c one_line.c

#include void main(void) { printf ("This is line one."); printf ("This is the second line."); }
www.eeworm.com/read/148696/12440366

c two_line.c

#include void main(void) { printf ("This is line one.\n"); printf ("This is the second line."); }