Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <stdio.h>
- #include <stdlib.h>
- #include <string.h>
- int main(){
- char str[5][10][6] = {
- {"o","r","s","s","r","t","b","e","s","m"},
- {"mo","mr","ms","ms","mr","mt","mb","me","ms","mo"},
- {"moo","mor","mo&","mos","mo^","mot","mo)","moe","mos","moh"},
- {"moho","mohr","mohs","mohs","moh#","moh_","moh@","mohe","mohs","moha"},
- {"mohao","mohar","mohas","mohas","mohar","moha$","moha^","moha+","mohas","mohab"}
- };
- int i,j;
- for(i=0;i<5;i++) {
- for(j=0;j<10;j++)
- printf("%s ", str[i][j]);
- printf("\n");
- }
- return 0;
- }
Advertisement
Add Comment
Please, Sign In to add comment