Advertisement
Guest User

Untitled

a guest
Dec 4th, 2016
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.24 KB | None | 0 0
  1. #import <stdio.h>
  2. int main() {
  3.     int i;
  4.     char c0[] = {115, 101, 110, 100, 032,
  5.                  110, 117, 100, 101, 115};
  6.     for (i = 0; i != 10; ++i) {
  7.         printf("%c\n",c0[i]);
  8.     }
  9.     printf("%s","\n");
  10.     return 0;
  11. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement