NumberedTextBox Examples
This is a resizable NumberedTextBox inflated from a div
Some sample text here!
This is not resizable
/* Prints a large X onto the console */
#include <stdio.h>
#define SIZE 51
int main(void) {
int x, y;
for(y=0; y < SIZE; y++) {
for(x=0; x < SIZE; x++) {
(x==y || SIZE-x-1==y) ? printf("*") : printf(" ");
}
printf("\n");
}
return 0;
}