String or Not?
Test your C programming skills by solving the given puzzle about character arrays and their output.
We'll cover the following...
Puzzle code
...Press + to interact
#include <stdio.h>int main(){char nonstring[] = {'g', 'r', 'e', 'e', 't','i', 'n', 'g', 's', ',', ' ', 'h', 'u', 'm', 'a', 'n'};char data[] = { 127, 129, 255 };printf("%s\n", nonstring);return(0);}
...