Computer Science, asked by lrohima9lasri4, 1 year ago

Explanation about the Given Program
#include int main() { char j=1; while(j < 5) { printf("%d, ", j); j = j+1; } printf("\n"); return 0; } Please explain this program.

Answers

Answered by kvnmurty
0
There are unprintable characters with ASCII codes 1,2,3,4, and 5.  The system will output these on the screen.  Perhaps some strange symbols may appear on the screen.

=========
#include
int main() {
char j=1;
while(j < 5) { printf("%d, ", j); j = j+1; }
printf("\n"); return 0;
Similar questions