Я пытался что-то понять с помощью указателей, поэтому я написал этот код:
#include <stdio.h>
int main(void)
{
char s[] = "asd";
char **p = &s;
printf("The value of s is: %p\n", s);
printf("The direction of s is: %p\n", &s);
printf("The value of p is: %p\n", p);
printf("The direction of p is: %p\n", &p);
printf("The direction of s[0] is: %p\n", &s[0]);
printf("The direction of s[1] is: %p\n", &s[1]);
printf("The direction of s[2] is: %p\n", &s[2]);
return 0;
}
При компиляции с помощью gcc я получаю следующие предупреждения:
$ gcc main.c -o main-bin -ansi -pedantic -Wall -lm
main.c: In function ‘main’:
main.c:6: warning: initialization from incompatible pointer type
main.c:9: warning: format ‘%p’ expects type ‘void *’, but argument 2 has type ‘char (*)[4]’
main.c:11: warning: format ‘%p’ expects type ‘void *’, but argument 2 has type ‘char **’
main.c:12: warning: format ‘%p’ expects type ‘void *’, but argument 2 has type ‘char ***’
(флаги для gcc - потому что я должен быть C89)
Почему несовместимые типы указателей? Разве имя массива не является указателем на его первый элемент? Так что, если s является указателем на 'a', &s
должно быть char **
, нет?
И почему я получаю другие предупреждения? Нужно ли приводить указатели с помощью (void *
), чтобы распечатать их?
И при запуске я получаю что-то вроде этого:
$ ./main-bin
The value of s is: 0xbfb7c860
The direction of s is: 0xbfb7c860
The value of p is: 0xbfb7c860
The direction of p is: 0xbfb7c85c
The direction of s[0] is: 0xbfb7c860
The direction of s[1] is: 0xbfb7c861
The direction of s[2] is: 0xbfb7c862
Как значение s и его направление (и, конечно, значение p
) могут быть одинаковыми?