Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
main()
{
// ...
// code
// ...
int array_size;
//code that calculates array_size
int *array_ptr = new int[array_size] // for an int array
if (array_ptr == NULL)
exit(1); // not enough memory
// ...
// ... array_ptr[0] is the 1st element
// ... array_ptr[1] is the 2nd element
// ...
// ... array_ptr[array_size - 1] is the last element
// ...
delete [array_size] array_ptr;
return 0;
}
char *array_ptr = new char[array_size][5][10] // for a char array