hey.

I am curious if there is a more efficient way to produce the effect that i am working with, or if this is the easiest (no it's not complex, i just started learning C this semester);


Code:
#include <stdio.h>
#include <windows.h>

void main()
{
	int x=219,y=0,Current;
	char Complete[] = "* complete *";

	printf("\n\n\t.now.loading.the.encryption.\n");
	printf("\n\t      [............]");
	printf("\b\b\b\b\b\b\b\b\b\b\b\b\b");

	
		while (y<12) {
			printf("%c",x);
			if (y%2==0) {
				Sleep(120);      }

			if (y%4==0) {
				Sleep(900);      }
			
			else {
				Sleep(400);      }
			
			y=(y+1);	                         }

		y=0; x=0;
		printf("\n\t       ");

		while (y<13) {
			Current = Complete[x];		
			Sleep(75);
			printf("%c",Current);
			x=(x+1);
			y=(y+1);             }
		
		printf("\n\n\n\n\n");
}

Another - Can anyone explain what C# Programming is?

Final - How do you get Windows to recognize the entire-255 ASCII character set, instead of just the natural 128 or whatever?

Thanks.