pl-sem/sem7/precompute.c

14 lines
176 B
C
Raw Permalink Normal View History

2023-08-17 22:08:53 +00:00
/* precompute.c */
#include <stdio.h>
#include <string.h>
int main (){
char buff[1024] = {0};
strcat(buff, "hello");
strcat(buff, " world");
printf("%s", buff);
}