'How to define a pointer on a array of strings in C?
Solution 1:[1]
char* a[3];
a[0]="Datentypen";
a[1] = "und";
a[2] = "Variablen";
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
| Solution | Source |
|---|---|
| Solution 1 | pm100 |

