Anyone can give simpel code for ascii value | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 1

Anyone can give simpel code for ascii value

29th Jun 2018, 3:18 PM
NISARG
2 Answers
+ 5
#include <stdio.h> int main(){ for(int i = 0; i < 255; ++i) printf("%c : %d\n", i, i); return 0; }
29th Jun 2018, 3:24 PM
Baptiste E. Prunier
Baptiste E. Prunier - avatar
+ 4
NISARG Sure, but, use the search bar in the codes section next time. https://code.sololearn.com/crSqR6cigbUP/?ref=app
29th Jun 2018, 3:24 PM
Manual
Manual - avatar