See line no : 5. When I use int x=0, y=0 then all the test cases pass but when char x=0,y=0; is used only 1 test case passes and rest others give "Time Limit Exceeded". Why do...
char ch=0; ch++; int i=0; i++; In first case, time limit is exceeded while in 2nd case, it runs w/o any problem. What happens internally? Someone please explain. Thanks