12 lines
214 B
C
12 lines
214 B
C
#include <stdio.h>
|
|
#include "hello.h"
|
|
|
|
void print_line(const char* str) {
|
|
for (int i = 0; str[i] != 0; i++) {
|
|
char c = str[i];
|
|
printf("PUT:%d - %c\n", c, c);
|
|
}
|
|
// str++;
|
|
printf("puts:%s\n", str);
|
|
}
|