How to check if string starts with two same letters in C

1 Answer

0 votes
#include <stdio.h>

int main()
{
    char s[] = "cc c++ javascript python c# php";

    printf("%d", s[0] == s[1]);

    return 0;
}





/*
run:

1

*/

 



answered Feb 14, 2022 by avibootz
...