16 lines
258 B
C
16 lines
258 B
C
#include <stdio.h>
|
|
#include <string.h>
|
|
|
|
int main() {
|
|
char c[7];
|
|
|
|
strcpy(c, "foobar");
|
|
|
|
printf("Hello World Foobar: %s\n", c);
|
|
|
|
for (char* i = c; i < c + 7; i++) {
|
|
printf("Mem address: %d\tContent: %c\n", i, *i);
|
|
}
|
|
|
|
return 0;
|
|
} |