Top

Discussion

Output?

#include 
int main()
{
    int c = 5, no = 10;
    do {
        no /= c;
    } while(c--);
  
    printf ("%dn", no);
    return 0;
}

 

  • A.1
  • B.Runtime Error
  • C.Compiler Error

Answer: B

No answer description available for this question.
 

No comment is present. Be the first to comment.
Loading…

Post your comment