Hello, world!

Hello and welcome to Dafeesh.com! In this blog I plan on sharing programming tips and tricks in a variety of languages. I’ll also be sharing what I’m currently working on and how others can benefit from my successes and failures.

#include <stdio.h>
#include <stdlib.h>

int main(char *argv[], int argc)
{
	const char * const textItems[] = {
		"Hello", ", ", "world",	"!", "\n"
	};
	const size_t textItems_len =
		sizeof(textItems) / sizeof(*textItems);

	for (auto i = 0; i < textItems_len; i++)
	{
		printf(textItems[i]);
	}

	return EXIT_SUCCESS;
}

Leave a comment