Output?
#include int main() { int c = 5, no = 10; do { no /= c; } while(c--); printf ("%dn", no); return 0; }
Answer: B
No answer description available for this question.