Discussion :: 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; }
Answer : Option D
Explanation :
No answer description available for this question.
Be The First To Comment