Caesar's cipher in VC#
        Posted  
        
            by purplepills
        on Stack Overflow
        
        See other posts from Stack Overflow
        
            or by purplepills
        
        
        
        Published on 2010-06-08T01:30:40Z
        Indexed on 
            2010/06/08
            1:42 UTC
        
        
        Read the original article
        Hit count: 374
        
c#
|cryptography
#include<string.h>
void main()
{
    char name[50];
    int i,j;
    printf("Enter the name:>");
    scanf("%s",&name);
    j=strlen(name);
    for(i=0;i<j;i++)
{
    name[i] = name[i]+3;
}
    printf("ENCRYTED NAME=>%s",name);
}
This a caesar's cipher in c programming friends i want use this same thing in VC# where i will get input from user through textbox. please help me out.
© Stack Overflow or respective owner