Here, we will create an integer variable and use the Bitwise NOT (!) operator to invert the if condition.
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.
total answers (1)
start bookmarking useful questions and collections and save it into your own study-lists, login now to start creating your own collections.
Program/Source Code:
The source code to perform the bitwise NOT (!) operation is given below. The given program is compiled and executed successfully.
Output:
Explanation:
In the above program, we imported a package Swift to use the print() function using the below statement,
Here, we used if condition to demonstrate the bitwise NOT (!) operator.
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