Guest User

Untitled

a guest
Jan 23rd, 2018
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.16 KB | None | 0 0
  1. #include <stdio.h>
  2. int main() {
  3. int i, c;
  4. while((c = getc_unlocked(stdin)) != EOF)
  5. for(i = 0; i < 3; fputc("ACGT"[(c >> (i++ << 1)) & 3], stdout));
  6. }
Add Comment
Please, Sign In to add comment