Hello All,
arr is declared as an array of pointers which are pointers to strings.
char **arr = {"element1","element2"};
How can I intitialize and access them?
I receive 2 warnings:
( AS7 GCC 5.4.0 C project)
Severity Code Description Project File Line
Warning excess elements in scalar initializer PointerToPointer
Severity Code Description Project File Line
Warning initialization from incompatible pointer type [-Wincompatible-pointer-types] PointerToPointer C:\Users\User2\Documents\Atmel Studio\7.0\PointerToPointer\PointerToPointer\main.c 16
friendly regards
Ellen