pl-sem/sem7/precompute.c
2023-08-18 01:08:53 +03:00

13 lines
176 B
C

/* precompute.c */
#include <stdio.h>
#include <string.h>
int main (){
char buff[1024] = {0};
strcat(buff, "hello");
strcat(buff, " world");
printf("%s", buff);
}