Write a program without using semicolon(;)?
Print a semicolon with out semicolon?
How to execute both if and else
if ([Link]("Hello abc ians\n") == null) {
} else {
[Link]("hello spiderman\n");
}
int a = 5;
int x = a++;
int y = ++a;
[Link](x);
[Link](y);
o/p5,7
Performing addition without using addition operatior
int a = 12;
int b = 12;
int c = a -(- b);
[Link](c);
Performing substraction without using substrraction operatior
int a = 12;
int b = 12;
int c = a+~b+1;
[Link](c);