The source code to create different types of variables is given below. The given program is compiled and executed successfully.
// Swift program to create different types
// of variables
var intVar:Int = 10;
var floatVar:Float = 10.34;
var strVar:String = "Hello World";
var boolVar:Bool = true;
print("IntVar : ",intVar );
print("FloatVar: ",floatVar );
print("StrVar : ",strVar );
print("BoolVar : ",boolVar );
Output:
IntVar : 10
FloatVar: 10.34
StrVar : Hello World
BoolVar : true
...Program finished with exit code 0
Press ENTER to exit console.
Explanation:
In the above program, we created 4 variables intVar, floatVar, strVar, boolVar, that are initialized with 10, 10.34, "Hello World", true respectively. Then we printed the value of created variables on the console screen.
Program/Source Code:
The source code to create different types of variables is given below. The given program is compiled and executed successfully.
Output:
Explanation:
In the above program, we created 4 variables intVar, floatVar, strVar, boolVar, that are initialized with 10, 10.34, "Hello World", true respectively. Then we printed the value of created variables on the console screen.
need an explanation for this answer? contact us directly to get an explanation for this answer