Advertisement
hobarrera

asdf

Jun 14th, 2012
43
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.37 KB | None | 0 0
  1. // Copyright (c) 2012 Hugo Osvaldo Barrera <hugo@osvaldobarrera.com.ar>
  2.  
  3. #include <stdio.h>
  4.  
  5. int main(int argc, char* argv[]) {
  6.     int txt[] = {82, 111, 115, 101, 115, 32, 97, 114, 101, 32, 114, 101, 100, 44, 10, 86, 105, 111, 108, 101, 116, 115, 32, 97, 114, 101, 32, 98, 108, 117, 101, 10};
  7.  
  8.     // C pre-99
  9.     int i;
  10.  
  11.     for (i = 0; i < 32; i++)
  12.         printf("%c", txt[i]);
  13. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement