Untitled
#define _CRT_SECURE_NO_WARNINGS
#include <stdio.h>
#include <string.h>
int main(void)
{
char s1[31] = "";
strcat(s1, NULL);
printf("%s\n", s1);
return 0;
}
INFO
#define _CRT_SECURE_NO_WARNINGS
#include <stdio.h>
#include <string.h>
int main(void)
{
char s1[31] = "";
strcat(s1, NULL);
printf("%s\n", s1);
return 0;
}