Codeforces 281A Word Capitalization Solution

Solve in C:

#include<stdio.h>
#include<string.h>
int main()
{
    char s[1001],c[1001];
    int i,n,len;
    scanf("%s",s);
    len=strlen(s);
    for(i=0; i<=len; i++)
    {
        if(i==0)
        {
            if((s[i]>='a')&&(s[i]<='z'))
                s[i]=s[i]-32;
            printf("%s",s);
        }

    }
}

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.