ramytamer

Untitled

May 31st, 2014
206
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.54 KB | None | 0 0
  1. #include <stdio.h>
  2. #include <stdlib.h>
  3. #include <string.h>
  4.  
  5. int main(){
  6.     char str[5][10][6] = {
  7.                         {"o","r","s","s","r","t","b","e","s","m"},
  8.                         {"mo","mr","ms","ms","mr","mt","mb","me","ms","mo"},
  9.                         {"moo","mor","mo&","mos","mo^","mot","mo)","moe","mos","moh"},
  10.                         {"moho","mohr","mohs","mohs","moh#","moh_","moh@","mohe","mohs","moha"},
  11.                         {"mohao","mohar","mohas","mohas","mohar","moha$","moha^","moha+","mohas","mohab"}
  12.                     };
  13.     int i,j;
  14.     for(i=0;i<5;i++) {
  15.         for(j=0;j<10;j++)
  16.             printf("%s ", str[i][j]);
  17.         printf("\n");
  18.     }
  19.     return 0;
  20. }
Advertisement
Add Comment
Please, Sign In to add comment