[ create a new paste ] login | about

Link: http://codepad.org/Gptec3yS    [ raw code | output | fork ]

kamarakay2000 - C, pasted on Jul 29:
1
2
3
4
5
6
7
8
9
10
#include <stdio.h>
#include <ctype.h>
char *encryrt(char *input);
int main()
{
    char *instructions = "Diliver the package to Berlin";
    printf("Here are your secrect instructions\n");
    printf("On confrontation with an outsider,no compromises."); 
    return(0);
} 


Output:
1
2
Here are your secrect instructions
On confrontation with an outsider,no compromises.


Create a new paste based on this one


Comments: