.I am 78 69 82 68 . Try finding my character 😁 | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 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 Answer
+ 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