Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/acm-clan/algorithm-stone
/ print_array
Function
print_array
templates/quicksort.cpp:36–42 ·
view source on GitHub ↗
Source
from the content-addressed store, hash-verified
34
}
35
36
void print_array(int arr[], int size)
37
{
38
int i;
39
for (i = 0; i < size; i++)
40
printf(
"%d "
, arr[i]);
41
printf(
"\n"
);
42
}
43
44
int main()
45
{
Callers
1
main
Function · 0.85
Calls
no outgoing calls
Tested by
no test coverage detected