#include #include int main(){ int *ptr = malloc(0); if(ptr == NULL){ printf("Vrednost ptr je NULL\n"); return 0; } printf("Vrednost ptr je %d\n", ptr); int skrivnostnaVrednost = *ptr; printf("SkrivnostnaVrednost na katero kaže prt je %d\n", skrivnostnaVrednost); free(ptr); return 0; }