teknoraver

rido poco

Apr 11th, 2014 (edited)
213
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.19 KB | None | 0 0
  1. #include <stdio.h>
  2.  
  3. int main() {
  4.     char s1[] = "RIDO POCO\n";
  5.     int m[] = {5, 3, 0, 7, 8, 4, 2, 1, 6, 9};
  6.     for (int i = 0; i < sizeof(m) / sizeof(*m); i++)
  7.         putchar(s1[m[i]]);
  8.     return 0;
  9. }
Add Comment
Please, Sign In to add comment