+ 1
Anyone can give simpel code for ascii value
2 Réponses
+ 5
#include <stdio.h>
int main(){
for(int i = 0; i < 255; ++i)
printf("%c : %d\n", i, i);
return 0;
}
+ 4
NISARG
Sure, but, use the search bar in the codes section next time.
https://code.sololearn.com/crSqR6cigbUP/?ref=app