Answered Questions

  • Output of the C program

    What is the output of the following code? {geshibot language="c"} #include void main() { int s=0; while(s++

    Nupur Boral

    • Aug 16th, 2012

    Ans:3 s++ means-first s=0 then s=s+1.so checking the initial value of s & then increment the value of s.In this way continuing this process & print the value of s.

    Ravindra Kumar saxena

    • Jul 25th, 2012

    45678910