在C语言中,当我们处理字符串或数组时,通常会使用指针来访问和操作元素
#include<stdio.h>
int main() {
char str[] = "Hello, World!";
char *current = str;
while (*current != '\0') {
printf("%c", *current);
current++;
}
return 0;
}
#include<stdio.h>
#include<string.h>
int main() {
char str[] = "name=John,age=30,city=New York";
char *token = strtok(str, ",");
while (token != NULL) {
printf("%s\n", token);
token = strtok(NULL, ",");
}
return 0;
}
#include<stdio.h>
#include<string.h>
int main() {
char str1[] = "Hello, ";
char str2[] = "World!";
char result[50];
strcpy(result, str1);
strcat(result, str2);
printf("%s\n", result);
return 0;
}
#include<stdio.h>
int main() {
int arr[][3] = {{1, 2, 3}, {4, 5, 6}, {7, 8, 9}};
int rows = sizeof(arr) / sizeof(arr[0]);
int cols = sizeof(arr[0]) / sizeof(arr[0][0]);
for (int i = 0; i< rows; i++) {
for (int j = 0; j< cols; j++) {
printf("%d ", *(*(arr + i) + j));
}
printf("\n");
}
return 0;
}
这些只是使用指针的一些基本示例。实际上,指针在C语言中的应用非常广泛,包括动态内存分配、函数参数传递等。掌握指针的使用对于编写高效、灵活的C语言程序非常重要。