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

Correct Answer: 1, 2, 3, 4

More Questions from Control Instructions

Discussion & Comments

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