Quick actions

cmd+k|ctrl+k

Navigation

Languages

Untitled

Snippet info

Language

C

Visibility

unlisted

Author

legacy-anonymous

Created

2022-07-25T02:10:21.533508Z

Updated

2022-07-25T02:10:21.533508Z

#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