This Dart code is demonstrating how to use comparison operators to compare two variables. Here's what's happening in this code:
void main(){ int a,b; a=123; b=10; print("Greater than : ${a>b}"); print("Lesser than : ${a<b}"); print("Greater than or equal to : ${a>=b}"); print("Lesser than or equal to : ${a<=b}"); print("Equality : ${a==b}"); print("Not equal : ${a!=b}"); }To download raw file Click Here
Greater than : true Lesser than : false Greater than or equal to : true Lesser than or equal to : false Equality : false Not equal : true
Learn All in Tamil © Designed & Developed By Tutor Joes | Privacy Policy | Terms & Conditions