Comment trouver les éléments dans le codage du tableau C

#include <stdio.h>
int main(){
	int mark[] = {12,34,56,23,21};
//	 printf("%d",mark[0]);
	int size= sizeof mark/ sizeof mark[4];
	printf("%d",size);
	return 0; 
}
Hajacky_Anjanonymous