Answer the question
In order to leave comments, you need to log in
How to output an array in C?
Good evening!
I have a dynamic array
int *p_array = (int *)malloc(sizeof(int)*5000);
как правильно вывести данные, например, с 50 по 5000 символ?
for (int i = 50; i < 5000; ++i)
{
printf("%D", p_array[i]);
}
Answer the question
In order to leave comments, you need to log in
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question