Skip to content

Instantly share code, notes, and snippets.

@Allwin12
Last active November 19, 2020 07:00
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Allwin12/cc3b82bd8694e7bfedc47ca08124a558 to your computer and use it in GitHub Desktop.
Save Allwin12/cc3b82bd8694e7bfedc47ca08124a558 to your computer and use it in GitHub Desktop.
#include<stdio.h>
int main()
{
char words[4][5] = {"word", "bird", "lost", "grid"};
for(int i=0; i<4; i++)
{
for(int j=0;j<4;j++)
{
printf("%c", words[i][j]);
}
printf("\n");
}
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment