What will be the output of given code and why -static void Main(string[] args){float i = 1.0f, j = 0.05f;while (i < 2.0f; j <= 2.0f){Console.WriteLine(i++ - ++j);}Console.ReadLine();}
Ujjval Shukla
while (i < 2.0f; j <= 2.0f) error here .."semi-colon should be replaced by any operator(and,or,not)"
-0.04999995f