Answers for "c set string to empty"

C
1

how to denote an empty string in c

#include <stdio.h>
#include <string.h>

int main()
{
    char empty[5] = { '' };
    char null[5];

    if( strcmp(empty,null)==0 )
        puts("Strings are the same");
    else
        puts("Strings are not the same");

    return(0);
}
Posted by: Guest on July-06-2020
0

how to set string to null in c

char *str;
/* ... allocate storage for str here ... */
*str = ''; /* Same as *str = 0; */
Posted by: Guest on April-20-2021

Code answers related to "C"

Browse Popular Code Answers by Language