All pastes #1850165 Raw Edit

sec

public text v1 · immutable
#1850165 ·published 2010-03-23 10:54 UTC
rendered paste body
#include <stdio.h>#include <string.h>#define NAZWA "Uryyb jbeyq!"int main(){  char cap, byte;  char name[32] = "\0";  int i;  for(i=0; i<strlen(NAZWA); i++)  {      byte = NAZWA[i];      cap = byte & 32;      byte &= ~cap;      byte = ((byte >= 'A') && (byte <= 'Z') ? ((byte - 'A' + 13) % 26 + 'A') : byte) | cap;      name[i] = byte;  }  printf("%s\n", name);  return 0;}