288 views
1 votes
1 votes
#include <stdio.h>

int main()
{
    int b= 14;
    
    b = b + ~b;
    
    printf("op = %d",b);

    return 0;
}

I am gettiing -1 as output why is that so?

Please log in or register to answer this question.

No related questions found