8 lines
88 B
C
8 lines
88 B
C
#include <stdio.h>
|
|
int main()
|
|
{
|
|
char str[5];
|
|
snprintf(str, 10, "%s", "abc");
|
|
}
|
|
|