Hi Everyone,,, If you are interested to have your own website,and with free hosting,then you can do after reading this. Having website is a very good marketing tool for an Entrepreneur. And keeping this thing in mind, Govt. of India tied up with Google & Hostgator company to provide a way to new INDIAN entrepreneur to have a website so that he can develop his business. There is a only valid limitation is that,you should have to give your PAN card no. or ur service tax bill no. to ensure that you are an INDIAN. Firstly On that site you have to choose a available domain with ".in" extension,after that you have to fill all the details according you or your company. And at last you have to configure your site. If you have any problem in configuring your website,they're given support for you.Some PDFs are available for you to guide how to improve your site to gain more customers and increase your business. I insist all the entrepreneurs of India,utilize this utility and share with others so that more entrepreneurs will be available in India and ultimately Indian Economics will have a acceleration of growth, and which is very good for us to "Led India to A Developed Country." Here is the link of this site: http://www.indiagetonline.in
WHAT'S NEW?
Loading...
Standford University and Coursera company from United Kingdon(England) with 50 universities of U.K. offering free online courses under the name of MOOC(Mass Open Online Course). If you are interested you can enroll with them.The syllabus is also superb that will brushup your old data and add high class data.And they are giving a certificate after successfull completion of the course. And this will definitely benifit at your campus as well as technical life. I hope u all will like it. So enjoy. For course,click below link: http:\\www.coursera.org
/*
Magic Square:-
It is a square matrix whose row element's addition and column element's
addition and diagonal element's addition is same.
Read more about Magic Square:- http://en.wikipedia.org/wiki/Magic_square
*/
#include<stdio.h>
#define MAX 100
int main()
{
int sqr[MAX][MAX];
int i,j,p,q,n;
int cnt=1;
label:
printf("\nEnter matrix size:");
scanf("%d",&n);
if(n%2==0)
{
printf("\nPlease enter odd number.");
goto label;
}
for(i=0;i<n;i++)
for(j=0;j<n;j++)
sqr[i][j]=0;
i=p=q=0;
j=(n-1)/2;
sqr[i][j]=cnt++;
do
{
if(i==0)
p=n-1;
else
p=i-1;
if(j==0)
q=n-1;
else
q=j-1;
if(sqr[p][q])
{
p=i+1;
q=j;
sqr[p][q]=cnt++;
}
if(sqr[p][q] == 0)
sqr[p][q]=cnt++;
i=p;
j=q;
}while(cnt != (n*n)+1);
printf("\nMagic Square is:\n");
for(i=0;i<n;i++)
{
for(j=0;j<n;j++)
printf("\t%d",sqr[i][j]);
printf("\n");
}
return 0;
}
Hey guys, I think you had seen the businessman movie.The movie is fantastic and its instrumental music also.I cut that music from the movie.I hope you will like this mostly.
/*
* Animation of Ballon Shooting
* Compiled on Turbo C++
* Written By: Yasar Shaikh
*/
* Animation of Ballon Shooting
* Compiled on Turbo C++
* Written By: Yasar Shaikh
*/
#include<stdio.h>
#include<conio.h>
#include<graphics.h>
#include<dos.h>
void bg()
{
int xcord;
cleardevice();
setcolor(WHITE);
xcord=getmaxx()/2;
settextstyle(0, HORIZ_DIR,1);
outtextxy(xcord,10,"Created By:Yasar Shaikh");
outtextxy(xcord,20,"From: WIT,Solapur");
outtextxy(xcord,30,"Roll No.SE IT 55");
//First row of ballons
setfillstyle(SOLID_FILL,RED);
fillellipse(200,200,20,20);
setfillstyle(SOLID_FILL,YELLOW);
fillellipse(240,200,20,20);
setfillstyle(SOLID_FILL,GREEN);
fillellipse(280,200,20,20);
setfillstyle(SOLID_FILL,LIGHTGRAY);
fillellipse(320,200,20,20);
setfillstyle(SOLID_FILL,CYAN);
fillellipse(360,200,20,20);
//second row of ballon
setfillstyle(SOLID_FILL,MAGENTA);
fillellipse(220,240,20,20);
setfillstyle(SOLID_FILL,BLUE);
fillellipse(260,240,20,20);
setfillstyle(SOLID_FILL,LIGHTGREEN);
fillellipse(300,240,20,20);
setfillstyle(SOLID_FILL,LIGHTBLUE);
fillellipse(340,240,20,20);
//Third row of ballons
setfillstyle(SOLID_FILL,BROWN);
fillellipse(230,280,20,20);
setfillstyle(SOLID_FILL,LIGHTRED);
fillellipse(270,280,20,20);
setfillstyle(SOLID_FILL,LIGHTMAGENTA);
fillellipse(310,280,20,20);
}
void gun()
{
int a[8]={270,450,270,370,290,370,290,450};
setfillstyle(SOLID_FILL,BROWN);
fillpoly(4,a);
}
void main()
{
int gd=DETECT,gm,i;
initgraph(&gd,&gm,"d:\cpp");
bg();
gun();
setcolor(RED);
outtextxy(100,100,"Press Any Key to Start...");
getche();
settextstyle(TRIPLEX_FONT, HORIZ_DIR, 5);
for(i=0;i<210;i+=2)
{
bg();
gun();
settextstyle(TRIPLEX_FONT, HORIZ_DIR, 5);
setcolor(rand(i));
outtextxy(280,370-i,".");
outtextxy(280,370-i-2," ");
delay(100);
}
setcolor(BLACK);
setfillstyle(SOLID_FILL,BLACK);
fillellipse(280,200,20,20);
setcolor(RED);
settextstyle(TRIPLEX_FONT, HORIZ_DIR, 10);
outtextxy(100,200,"Bang...!!!");
getche();
getche();
closegraph();
}