1 /*
2 *
charliteral.c
3 *
4 * Beispiel-Programm Zeichen-Literale
5 *
6 * Autor: H.Drachenfels
7 * Erstellt am: 25.2.2015
8 */
9
10 #include <stdio.h>
11
12 int main(void)
13 {
14 printf("%s\n", "Hallo");
15 printf("%s\n", "Hal" "lo");
16 printf("Hallo\n");
17 printf("%c%c%c%c%c\n", 'H', 'a', 'l', 'l', 'o');
18 return 0;
19 }
20