Kholood K.

Your awesome Tagline

Notes

Anonymous asked: #include <stdio.h>
int main()
{
int i;
int msg[] = {72,101,108,108,111,32,75,104,
111,108,111,111,100,44,32,109,121,32,110,
97,109,101,32,105,115,32,83,97,97,100,46,
32,89,111,117,39,118,101,32,99,114,97,99,
107,101,100,32,116,104,101,32,99,111,100,
101,46,32,80,108,101,97,115,101,32,101,109,
97,105,108,32,109,101,32,97,116,58,32,48,120,
48,48,53,52,64,103,109,97,105,108,46,99,111,109,32};
for(i=0; i<94; i++)
{
printf("%c", msg[i]);
}
printf("\n");
return 0;
}

am i supposed to explain what that code does?