Skip to content

Instantly share code, notes, and snippets.

@trmaphi
Created March 31, 2019 10:50
Show Gist options
  • Save trmaphi/fecec133d40585491e57856066fefef8 to your computer and use it in GitHub Desktop.
Save trmaphi/fecec133d40585491e57856066fefef8 to your computer and use it in GitHub Desktop.
[Print array] Print character array in c #c #print
void printArray(char arr[], int size){
for (int i = 0; i < size; ++i)
{
printf("%c", arr[i]);
}
printf("\n");
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment