• Source
    1. #include <stdio.h>
    2. #include <string.h>
    3.  
    4. int main(void) {
    5. char buf1[] = "";
    6. static char buf2[10];
    7. char buf3[10] = {0};
    8. char buf4[10];
    9. memset( buf4, 0, 10);
    10. return 0;
    11. }
    12.