Computer Science, asked by pullareddynarayana, 1 month ago

#include <stdio.h>

void main(){
int i = 65;
~i ;
printf ("%d",!i);
}​

Answers

Answered by rajatsingh01
1

Answer:

0

Explanation:

~i takes integer value as integer value with decimal, hexadecimal or octal type.

! is Logical NOT. True only if the operand is 0 If i=65 then, expression !(i=65) equals to 0.

Similar questions