Run Code
|
API
|
Code Wall
|
Misc
|
Feedback
|
Login
|
Theme
|
Privacy
|
Patreon
domain.com
//gcc 5.4.0 #include <stdio.h> int main(void) { printf("Hello, world!\n"); return 0; }https://play.google.com/store/apps/details?id=vrpatel0018.cprograms /*string encryption and decryption*/ #include<stdio.h> void encrypt(char *dest){ int j=0; do{ dest[j]-=20; j++; }while(dest[j]!='\0'); } void decrypt(char *dest){ int j=0; do{ dest[j]+=20; j++; }while(dest[j]!='\0'); } void main(){ char s[80]; puts("\nEnter the string"); gets(s); printf("\nThe given string : %s",s); encrypt(s); printf("\nEncrypted string : %s",s); decrypt(s); printf("\nDecrypted string : %s",s); }
run
|
edit
|
history
|
help
0
B_141205_funciones
pth_trap.c
FILE_operations
structure1
Project 5 v0.1
Spring 2017 Project 2 v.04
Project 3 part 2 Book v1.1
child process
prueba 3
numeroleidodeordeninverso