SyntaxFix
Write A Post
Hire A Developer
Questions
To print all the ascii values from 0 to 255 using while loop.
#include<stdio.h> int main(void) { int a; a = 0; while (a <= 255) { printf("%d = %c\n", a, a); a++; } return 0; }