Folge dem Video um zu sehen, wie unsere Website als Web-App auf dem Startbildschirm installiert werden kann.
Anmerkung: Diese Funktion ist in einigen Browsern möglicherweise nicht verfügbar.
const int SIZE = 18;
int* array = (int*)malloc(sizeof(int) * SIZE);
#include <stdio.h>
#include <stdlib.h>
int main(){
const int X_SIZE = 3;
const int Y_SIZE = 6;
int** array = (int**)malloc(sizeof(int*) * X_SIZE);
int i = 0;
for(i = 0; i < X_SIZE; i++){
*array = (int*)malloc(sizeof(int) * Y_SIZE);
memset(*array, 0, sizeof(int) * Y_SIZE);
}
//freigeben nicht vergessen
return 0;
}