#include void main() { char array[3]; // this is a tiny string! array[0] = 'h'; array[1] = 'i'; array[2] = '\0'; printf(array); }