在C語言中,當(dāng)我們處理字符串或數(shù)組時,通常會使用指針來訪問和操作元素
#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語言中的應(yīng)用非常廣泛,包括動態(tài)內(nèi)存分配、函數(shù)參數(shù)傳遞等。掌握指針的使用對于編寫高效、靈活的C語言程序非常重要。