Computer Science, asked by vipulkumar3467, 11 months ago

How to find the size of a list in C#?

Answers

Answered by omegads04
0

#include <stdlib.h>

#include <unistd.h>

int array[] = {15, 50, 34, 20, 10, 79, 100};

int n;

n = sizeof(array);

printf("Size of the given array is %d\n", n/sizeof(int));

return 0;

Similar questions