12 lines
162 B
C
12 lines
162 B
C
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include <string.h>
|
|
|
|
int main(void)
|
|
{
|
|
char* str;
|
|
strcat(str, "Hej alla");
|
|
printf("%s\n", str);
|
|
return 0;
|
|
}
|