initialize array in c with 0

#include <stdio.h>

int main() {
    int myArray[10] = {0};
    return 0;
}