#include void our_function(){ size_t A[1]; printf("A[0] = %lx\n"); printf("&A = %lx\n", &A); A[2] += 12; // Something like that } int main(){ our_function(); printf("Can we not print this?\n"); printf("But we do want to print this!\n"); return 0; }