Codeforces A. Petya and Strings Solution

Solve in C:


#include<stdio.h>
#include<string.h>
int main()
{

    char s[101],t[101];
    int r;
    while(scanf("%s%s",s,t)!=EOF)
    {
        r=strcmp(strlwr(s),strlwr(t));
        printf("%d\n",r);
    }

}

No comments

Most View Post

Recent post

RESTful APIs with CRUD Operations in Laravel 12| (2025)

  RESTful APIs serve as the foundation of modern web development. They follow a set of rules called Representational State Transfer (REST) t...

Powered by Blogger.