← Back to davo.co
summaryrefslogtreecommitdiffstats
path: root/literals.c
blob: f2c577ec27d468e9b52f1f0071e1de7a2cef63cb (plain)
1
2
3
4
5
6
7
char const A[] = { 'e', 'n', 'd', '\0', };
char const B[] = { 'e', 'n', 'd', '\0', };
char const* c = "end";
char const* d = "end";
char const* e = "friend";
char const* f = (char const[]){ 'e', 'n', 'd', '\0', };
char const* g = (char const[]){ 'e', 'n', 'd', '\0', };