
Wipro Placement Paper 2014
Part-1:
1) What is the output of the program given below
main()
{
signed char i=0;
for(;i>=0;i++) ;
printf("%d\n",i);
}
Explanation:
Notice the semicolon at the end of the for loop. THe initial value of the i is
set to 0. The inner loop executes to increment the value from 0 to 127 (the
positive range of char) and then it rotates...