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

int main(){
    char str[]=" My name is Shobhit Singh";
    for(int i=0;i<strlen(str);i++)
    {
        str[i]=str[i]+1;
    }

    printf("%s",str);
    
    return 0;
}

Embed on website

To embed this program on your website, copy the following code and paste it into your website's HTML: