So I want to print out a square with certain # of rows composed of string characters, as opposed to stars. For example, if there're 5 rows, and the string was "ilikecake", it'd be
ilike
c a
k e
i l
ikeca
So far this is my code, but there're so many bugs.
#include <stdio.h>
#include...