MIPI_AdvancedC_FRTK/Lect2/13.c

21 lines
462 B
C
Raw Permalink Normal View History

2024-11-14 08:45:50 +03:00
#include <stdio.h>
#include <inttypes.h>
//может сравнивать любые указатели
_Bool is_same(void *a, void *b)
{
//~ return *a = *b; // ОШИБКА! void * нельзя разыменовывать
return a == b; // Можно только сравнивать
}
int main(void)
{
int a=5;
int b=5;
int *pa = &b;
float *pc=NULL;
is_same(&a, pc) ? printf("Same\n") : printf("Different\n");
return 0;
}