Untitled

mail@pastecode.io avatar
unknown
plain_text
17 days ago
274 B
3
Indexable
Never
int main() {
    int a = 5;
    int b = 5;
    int *p1 = &a;
    int *p2 = &b;

    if (*p1 == p2) {
        printf("Os valores apontados por p1 e p2 são iguais.\n");
    } else {
        printf("Os valores apontados por p1 e p2 são diferentes.\n");
    }

    return 0;
}
Leave a Comment