Q:

Swift program to perform the bitwise NOT operation

belongs to collection: Swift Basic Programs

0

Here, we will create an integer variable and use the Bitwise NOT (!) operator to invert the if condition.

All Answers

need an explanation for this answer? contact us directly to get an explanation for this answer

Program/Source Code:

The source code to perform the bitwise NOT (!) operation is given below. The given program is compiled and executed successfully.

// Swift program to the
// perform bitwise NOT (!) operation

import Swift;

var num = 5;

if(!(num==5)){
    print("Hello")
}
else{
    print("Hiii")
}

Output:

Hiii

...Program finished with exit code 0
Press ENTER to exit console.

Explanation:

In the above program, we imported a package Swift to use the print() function using the below statement,

import Swift;

Here, we used if condition to demonstrate the bitwise NOT (!) operator.

if(!(num==5)){
    fmt.Println("Hello")
}else{
    fmt.Println("Hiii")
}  

In the above code, if the condition will be evaluated TRUE, if the value of variable num is not equal to 5 otherwise else part will be executed.

need an explanation for this answer? contact us directly to get an explanation for this answer

total answers (1)

Swift Basic Programs

This question belongs to these collections

Similar questions


need a help?


find thousands of online teachers now
Swift program to swap two numbers using the bitwis... >>
<< Swift program to perform the bitwise XOR operation...