Вы находитесь на странице: 1из 7

Make and make file :

DEFINITION:

Rooms:

#include<stdio.h>
int busdesign()
{
int n;
printf("\n enter the amount for rooms:");
scanf("%d",&n);
return n;
}

count:

#include<stdio.h>
int count()
{
int n;
printf("\n enter the number of patients in a room:");
scanf("%d",&n);
return n;
}

header:

int busdesign();
int count();
int time();
int payment();

main:

#include<stdio.h>
int rooms();
int count();
int time();
int payment();
int main()
{
int a,b,c,d;
a=rooms();
b=count();
c=time();
d=payment();
printf("\n THE TOTAL AMOUNT TO BE PAID: %d",(a*b)+c+d);
return 0;
}

payment:

#include<stdio.h>
int payment()
{
int n;
printf("\n enter the total amount to be paid:");
scanf("%d",&n);
return n;
}

time:

#include<stdio.h>
int time()
{
int n;
printf("\n enter the fee for medicine for the whole admission for the patient:");
scanf("%d",&n);
return n;
}

makefile

fees: mainbus.o rooms.o count.o time.o payment.o


gcc main.o rooms.o count.o time.o payment.o -o rent
mainbus.o: mainbus.c header.h
gcc -c mainbus.c
rooms.o: rooms.c header.h
gcc -c busdesign.c
count.o: count.c header.h
gcc -c count.c
time.o: time.c header.h
gcc -c time.c
payment.o: payment.c header.h
gcc -c payment.c

<html>
<head>
<title>MY RESUME</title>
</head>
<style>
p
{
border:5px pink
}
</style>
<p>
<body>
<center>
<h1>
<u>MY RESUME</u>
</h1>
</center>
<h3>HEMAMALINI</h3>
<img src="d.jpg"width=120 height=120 hspace=320 align=right>
<h5>DHARMAPURI</h5>
<h5>jhemamalini31@gmail.com</
<h5>Contact no:7397026345</h5><hr>
<h2>
<div style="backgroung-color:gray;
<u>CAREER OBJECTIVE</u>
</h2>
<h3> To succeed in an environment of growth and excellence and earn a job which
provides me job satisfaction and self development and help me acheive<br>
</h3>
<h2>

<div style="backgroung-color:gray;
<u>ACADEMIC QUALIFICATION</u>
</h2>
<table border=5 width=1000>
<tr>
<th>Qualification</th>
<th>Board</th>
<th>School</th>
<th>Year of passing</th>
<th>Marks</th>
</tr>
<tr>
<th>BACHELOR OF ENGINEERING</th>
<th>COIMBATORE INSITUTE OF TECHNOLOGY</th>
<th>COIMBATORE INSITUTE OF TECHNOLOGY</th>
<th>2021</th>
<th>96.2%</th>
</tr>
<tr>
<th>12th</th>
<th>HIGHER SECONDARY SCHOOL</th>
<th>IMS</th>
<t h>2017</th>
<th>96.7%</th>
</tr>
<tr>
<th>10th</th>
<th>SSLC</th>
<th>IMS</th>
<th>2015</th>
<th>95.67%</th>
</tr>
</table>
<h2>
<div style="backgroung-color:black;
<u>STRENGTH</u>
</h2>
<ul>
<h3>
<b>
<li>BEST COMMUNICATION SKILL
<li>SILENCE
<li>AWARE OF MYSELF</li>
<h3>
<b>
</ul
<h2>
<div style="backgroung-color:black;
<u>Personal details</u>
</h2>
</ul>
<b>
<h3>
<li>NAME:J.HEMAMALINI
<li>MARITAL STATUS : UNMARRIED
<li>HOBBIES:</li>
<ul>
<li>DRAWING
<li>HEARING SONGS
<li>READING</li>
</ul>
</ul>
</body>
</p>
</html>

Вам также может понравиться