#include<fstream.h>
#include<string.h>
#include<stdio.h>
#include<conio.h>
#include<process.h>
int main()
{
char name[30],file[30],*blank=ā.htmlā;
char temp[200],ch;
int num=0,len,i,line=1;
cout<<āEnter Name Of The Database : ā;
gets(name);
strcpy(file,name);
strcat(file,blank);
ofstream fout(file);
if(!fout)
{
cout<<ā
Error In Making Of A File :ā;
exit(1);
}
fout<<ā<html>
ā;
fout<<ā<blockqoute>ā;
fout<<ā<center>
ā;
fout<<ā<b><h1><u>ā<<āCURRICULAM VITAEā<<ā</h1></b></u>
ā;
fout<<ā</center>
ā;
cout<<ā
Enter Your Name : ā;
gets(temp);
strcpy(name,temp);
fout<<ā<br><h2>ā<<temp<<ā<br>
ā;
cout<<ā
Enter Your Address : ā;
gets(temp);
len=strlen(temp);
for(i=0;i<len;i++)
{
ch=temp[i];
if(ch==ā ā)
{
num++;
if(num==3)
{
fout<<ā<br>ā;
num=0;
}
fout<<ch;
}
fout<<ch;
}
cout<<ā
Enter Your Contact Number : ā;
gets(temp);
fout<<ā
<br>Contact No : ā<<temp<<ā<br><br><br>
ā;
cout<<ā
Enter Your Objective : ā;
gets(temp);
fout<<ā
<u>Objective : </u>
ā;
len=strlen(temp);
for(i=0;i<len;i++)
{
ch=temp[i];
if(ch==ā ā)
{
num++;
if(num==12)
{
fout<<ā<br>ā;
num=0;
}
fout<<ch;
}
fout<<ch;
}
num=0;
fout<<ā
<br><br>
ā;
cout<<ā
Enter Your Academic Record :
ā;
fout<<ā<u>Academic Record </u><br>
ā;
do
{
x:cout<<ā
ā<<line<<ā. ā;
gets(temp);
len=strlen(temp);
fout<<ā
<li>ā;
for(i=0;i<len;i++)
{
ch=temp[i];
if(ch==ā ā)
{
num++;
if(num==8)
{
fout<<ā<br> ā;
num=0;
}
fout<<ch;
}
fout<<ch;
}
cout<<ā
If you Want To Add More Information Press * Sign Or Quit To $
:
ā;
cin>>ch;
line++;
num=0;
if(ch==ā*')goto x;
}while(ch!=ā$');
line=1;
num=0;
cout<<ā
Enter Your Hobbies : ā;
gets(temp);
fout<<ā
<br><br><u>Hobbies : </u>
ā<<temp;
cout<<ā
Languages Known : ā;
gets(temp);
fout<<ā
<br><br><u>Languages Known : </u>ā<<temp;
cout<<ā
Enter Your Experience :
ā;
cout<<ā
If You Want To Bypass This Information Press $ Sign Or Any
Other
Key To Continue : ā;
cin>>ch;
if(ch==ā$')
{
goto a;
}
else
{
fout<<ā
<br><br><u>Experience </u>
ā;
do
{
y:cout<<ā
ā<<line<<ā. ā;
gets(temp);
len=strlen(temp);
fout<<ā
<li>ā;
for(i=0;i<len;i++)
{
ch=temp[i];
if(ch==ā ā)
{
num++;
if(num==8)
{
fout<<ā<br> ā;
num=0;
}
fout<<ch;
}
fout<<ch;
}
cout<<ā
If you Want To Add More Information Press A * sign Or Quit To
$
: ā;
cin>>ch;
line++;
num=0;
if(ch==ā*')goto y;
}while(ch!=ā$');
}
line=1;
num=0;
a:cout<<ā
Technical Skills :
ā;
cout<<ā
If You Want To Bypass This Information Press $ Sign Or Any
Other
Key To Continue : ā;
cin>>ch;
if(ch==ā$')
{
goto b;
}
else
{
fout<<ā
<br><br><u>Technical Skills </u><br>
ā;
do
{
z:cout<<ā
ā<<line<<ā. ā;
gets(temp);
len=strlen(temp);
fout<<ā
<li>ā;
for(i=0;i<len;i++)
{
ch=temp[i];
if(ch==ā ā)
{
num++;
if(num==8)
{
fout<<ā<br> ā;
num=0;
}
fout<<ch;
}
fout<<ch;
}
cout<<ā
If you Want To Add More Information Press A * sign Or Quit To
$
ā;
cin>>ch;
line++;
num=0;
if(ch==ā*')goto z;
}while(ch!=ā$');
}
line=1;
num=0;
b:cout<<ā
In The End Enter Your Personal Details :
ā;
fout<<ā
<br><br><u>Personal Details </u><br><br>
ā;
cout<<ā
Fathers Name : ā;
gets(temp);
fout<<ā
Fathers Name : ā<<temp;
cout<<ā
Enter Date Of Birth : ā;
gets(temp);
fout<<ā
<br>Date Of Birth : ā<<temp;
cout<<ā
Enter Martial Status :ā;
gets(temp);
fout<<ā
<br>Martial Status : ā<<temp;
cout<<ā
Sex :ā;
gets(temp);
fout<<ā
<br>Sex :
&n
bsp; ā<<temp;
cout<<ā
Permanent Address : ā;
fout<<ā
<br>Permanent Address : ā;
fout<<ā
<blockqoute><dl><dd>ā;
gets(temp);
len=strlen(temp);
for(i=0;i<len;i++)
{
ch=temp[i];
if(ch==ā ā)
{
num++;
if(num==3)
{
fout<<ā<dd>ā;
num=0;
}
fout<<ch;
}
fout<<ch;
}
fout<<ā
</dl></blockqoute>ā;
fout<<ā
<hr>ā;
fout<<ā
Date : ā;
fout<<ā
<br>Place : ā;
fout<<ā<h2 align=right>(ā<<name<<ā)</h2>ā;
fout<<ā
</blockqoute>ā;
fout<<ā
</html>ā;
cout<<ā
End Of Your CV Press Any Key To Continue : ā;
getch();
fout.close();
return 0;
}
Comment if u like