Easy C Quiz - 3 September 08, 2017 17. What is the Output of the below C-Code.? #include int main() { int i = 0X53F; printf ("%X", i + 1); ...Read More
Easy C Quiz - 2 September 08, 2017 8. How many times will the loop execute? #include<stdio.h> int main() { char c = 85; while(c = 25) { printf...Read More
Easy C Quiz September 08, 2017 Here are a few set of, simple but tricky code, just analyze the code and guess the output. 01. What is the Output of the below C-Code....Read More