Anyone can give simpel code for ascii value | Sololearn: Learn to code for FREE!
Nouvelle formation ! Tous les codeurs devraient apprendre l'IA générative !
Essayez une leçon gratuite
+ 1

Anyone can give simpel code for ascii value

29th Jun 2018, 3:18 PM
NISARG
2 Réponses
+ 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