Home » C Programming » Control Instructions

What will be the output of the program? #include int main() { char j=1; while(j < 5) { printf("%d, ", j); j = j+1; } printf("\n"); return 0; }

Correct Answer: 1, 2, 3, 4

← Previous Question Next Question→

More Questions from Control Instructions

Discussion & Comments

No comments yet. Be the first to comment!
Join Discussion