Pages

Wednesday, October 21, 2009

The famous movie clip of Matrix Reloaded implemented in 'C'.........


#include"stdio.h"
#include"conio.h"
#include"string.h"
#include"dos.h"
void main()
{
int i,j,l,t;
char y[20];
clrscr();
printf("Enter a string\n");
gotoxy(2,2);
gets(y);
l=strlen(y);
t=1;
for(j=0;j
    {
    for(i=3;i<=24;i++)
        {
         clrscr();
         puts(y);
         gotoxy(t,i);
         printf("%c",y[j]);
         delay(100);
         }
    }
clrscr();
getch();
}



No comments:

Post a Comment