+ 1
.I am 78 69 82 68 . Try finding my character 😁
I am new to programming language and to this platform.
1 Resposta
+ 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"