declares an array of size 3 declares an array of size 4 declares an array of size 5 declares an array of size 6 declares an array of size 7
char name[] = {'J', 'o'}; char name[] = {'J', 'o', '\n'}; char name[] = {'J', 'o', '\o'}; char name[] = {'J', 'o', '\0'}; char name[] = {'J', 'o', '%s'};
len is assigned 0 len is assigned 1 len is assigned 2 len is assigned 3 len is assigned 4
the strcat function the + operator the dir (DOS) or ls (UNIX) commands the strcpy function any of the above
the function it was called from itself a function called recursion a function called recurzion the main function
one byte 2 bytes 4 bytes 8 bytes smaller or the same as a long integer
32767 0x7FFF 2 15 - 1 approx half that of an unsigned two byte integer all of the above
square [] curly {} round () angled <> none
top