#include int main() { int antifaz[4] = {5, 6, 7, 8}; printf("antifaz: %p. &antifaz[0]: %p.\n", antifaz, &antifaz[0]); system("pause"); return 0; }