.I am 78 69 82 68 . Try finding my character 😁 | Sololearn: Learn to code for FREE!
Nouvelle formation ! Tous les codeurs devraient apprendre l'IA générative !
Essayez une leçon gratuite
+ 1

.I am 78 69 82 68 . Try finding my character 😁

I am new to programming language and to this platform.

13th Feb 2017, 9:29 AM
AnuraG
AnuraG - avatar
1 Réponse
+ 9
#include <iostream> using namespace std; int main() { char array[4] = {78, 69, 82, 68}; for (int i = 0; i < 4; i++) { cout << array[i]; } return 0; } // outputs "NERD"
13th Feb 2017, 10:33 AM
Hatsy Rei
Hatsy Rei - avatar