#include <stdio.h> #define N 4 int main() { int x[N] = {1, 9, 8, 4}; int i; int *p; // 方式1:通过数组名和下标遍历输出数组元素 for (i = 0; i < N; ++i) printf("%d", x[i]); printf("\n"); // 方式2:通过指针变量遍历输出数组元素 (写法1) for (p = x; p < x + N; ++p) printf("%d", *p); printf("\n"); // 方式2:通过指针变量遍历输出数组元素(写法2) p = x; for (i = 0; i < N; ++i) printf("%d", *(p + i)); printf("\n"); // 方式2:通过指针变量遍历输出数组元素(写法3) p = x; for (i = 0; i < N; ++i) printf("%d", p[i]); printf("\n"); return 0; }
#include <stdio.h> int main() { int x[2][4] = {{1, 9, 8, 4}, {2, 0, 4, 9}}; int i, j; int *p; // 指针变量,存放int类型数据的地址 int(*q)[4]; // 指针变量,指向包含4个int型元素的一维数组 // 使用数组名、下标访问二维数组元素 for (i = 0; i < 2; ++i) { for (j = 0; j < 4; ++j) printf("%d", x[i][j]); printf("\n"); } // 使用指针变量p间接访问二维数组元素 for (p = &x[0][0], i = 0; p < &x[0][0] + 8; ++p, ++i) { printf("%d", *p); if ((i + 1) % 4 == 0) printf("\n"); } // 使用指针变量q间接访问二维数组元素 for (q = x; q < x + 2; ++q) { for (j = 0; j < 4; ++j) printf("%d", *(*q + j)); printf("\n"); } return 0; }
#include <stdio.h> #include <string.h> #define N 80 int main() { char s1[] = "Learning makes me happy"; char s2[] = "Learning makes me sleepy"; char tmp[N]; printf("sizeof(s1) vs. strlen(s1): \n"); printf("sizeof(s1) = %d\n", sizeof(s1)); printf("strlen(s1) = %d\n", strlen(s1)); printf("\nbefore swap: \n"); printf("s1: %s\n", s1); printf("s2: %s\n", s2); printf("\nswapping...\n"); strcpy(tmp, s1); strcpy(s1, s2); strcpy(s2, tmp); printf("\nafter swap: \n"); printf("s1: %s\n", s1); printf("s2: %s\n", s2); return 0; }
#include <stdio.h> #include <string.h> #define N 80 int main() { char *s1 = "Learning makes me happy"; char *s2 = "Learning makes me sleepy"; char *tmp; printf("sizeof(s1) vs. strlen(s1): \n"); printf("sizeof(s1) = %d\n", sizeof(s1)); printf("strlen(s1) = %d\n", strlen(s1)); printf("\nbefore swap: \n"); printf("s1: %s\n", s1); printf("s2: %s\n", s2); printf("\nswapping...\n"); tmp = s1; s1 = s2; s2 = tmp; printf("\nafter swap: \n"); printf("s1: %s\n", s1); printf("s2: %s\n", s2); return 0; }
#include <stdio.h> void str_cpy(char *target, const char *source); void str_cat(char *str1, char *str2); int main() { char s1[80], s2[20] = "1984"; str_cpy(s1, s2); puts(s1); str_cat(s1, " Animal Farm"); puts(s1); return 0; } void str_cpy(char *target, const char *source) { while (*target++ = *source++); } void str_cat(char *str1, char *str2) { while (*str1) str1++; while (*str1++ = *str2++); }
#include <stdio.h> #define N 80 int func(char *); int main() { char str[80]; while (gets(str) != NULL) { if (func(str)) printf("yes\n"); else printf("no\n"); } return 0; } int func(char *str) { char *begin, *end; begin = end = str; while (*end) end++; end--; while (begin < end) { if (*begin != *end) return 0; else { begin++; end--; }
} return 1; }
#include <stdio.h> #define N 80 void func(char *); int main() { char s[N]; while (scanf("%s", s) != EOF) { func(s); puts(s); } return 0; } void func(char *str) { int i; char *p1, *p2, *p; p1 = str; while (*p1 == '*') p1++; p2 = str; while (*p2) p2++; p2--; while (*p2 == '*') p2--; p = str; i = 0; while (p < p1) { str[i] = *p; p++; i++; } while (p <= p2) { if (*p != '*') { str[i] = *p; i++; }标签:++,s2,s1,char,int,实验,printf From: https://www.cnblogs.com/63385404abcd/p/17390757.html