/* Written by : SAURABH DHORMARE */
/* it is a C program to convert it in C++ just instead of given two header files*/
/* just put #include<iostream.h> */
/*and instead of printf(""); write cout<<""; it is very easy,isn't it? */
/* Run it & see what happens !!! */
/* stop it after run if you can; without closing output window */
#include<stdio.h>
#include<conio.h>
void main()
{
int i;
int j=1;
int k=2,l=7,m=11;
for(i=0;i<=j;i++)
{
printf("SAURABH\n\n");
if(i==k)
{
printf(" Neo\n\n\n");
k=k+2;
}
if(i==l)
{
printf(" I'm\n\n\n");
l=l+7;
}
if(i==m)
{
printf(" Matrix");
m=m+11;
}
j++;
/* getch(); */ /*if problem try getch();*/
}
}
Writen By :-Saurabh.dhormare
Posted By :-Cplusplusprogramming
/* it is a C program to convert it in C++ just instead of given two header files*/
/* just put #include<iostream.h> */
/*and instead of printf(""); write cout<<""; it is very easy,isn't it? */
/* Run it & see what happens !!! */
/* stop it after run if you can; without closing output window */
#include<stdio.h>
#include<conio.h>
void main()
{
int i;
int j=1;
int k=2,l=7,m=11;
for(i=0;i<=j;i++)
{
printf("SAURABH\n\n");
if(i==k)
{
printf(" Neo\n\n\n");
k=k+2;
}
if(i==l)
{
printf(" I'm\n\n\n");
l=l+7;
}
if(i==m)
{
printf(" Matrix");
m=m+11;
}
j++;
/* getch(); */ /*if problem try getch();*/
}
}
Writen By :-Saurabh.dhormare
Posted By :-Cplusplusprogramming