Answers for "how to denote an empty string in c"

C
1

how to denote an empty string in c

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

int main()
{
    char empty[5] = { '\0' };
    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

Code answers related to "how to denote an empty string in c"

Code answers related to "C"

Browse Popular Code Answers by Language