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
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;
}
=========
#include
int main() {
char j=1;
while(j < 5) { printf("%d, ", j); j = j+1; }
printf("\n"); return 0;
}
Similar questions
Social Sciences,
8 months ago
Math,
8 months ago
Hindi,
8 months ago
English,
1 year ago
Math,
1 year ago
Social Sciences,
1 year ago