MIPI_AdvancedC_FRTK/Lect2/10_1.c

14 lines
223 B
C
Raw Normal View History

2024-11-14 08:45:50 +03:00
#include <stdio.h>
int main(void)
{
/* Нет ошибки */
int *p = NULL;
//~ if(p == &(*p))
//~ if(&(*p) != NULL)
//~ if(p == NULL)
if(!p)//(p!=0) (*p)
printf("True\n");
return 0;
}