Log in Register Dashboard Temp Share Shortlinks Frames API

abh - HTMLify profile

abh's Profile Picture

abh

523 Files

134628 Views

Latest files of /abh/learning/c/BPPL/Phase-1/memory

array.c abh/learning/c/BPPL/Phase-1/memory/array.c
65 Views
0 Comments
#include <stdio.h>
#include <stdlib.h>

void print_int_array(int array[], int len) {
printf("[");
for (int i=0; i<len; i++) {
if (i == len - 1) {
printf("%d", array[i]);