Now You Know How to Calculate Actual Draft by C Programming
Tuesday, 22 January 2019
Edit
INTRODUCTION :
Draft is widely used in spinning calculation. From this experiment I will find out actual draft by using C programming language.
![]() |
OBJECTIVES:
- To know the computer language .
- To learn how to work with ‘C++’
- To cope with ‘C’ programming.
printf( )=To display a command in monitor.
Void=Not to return the value from one function.
getch( )=To hold the value in the monitor until getting any response from programmer.
/n =To show contents in multiple line .
/t =To show contents in each pages with connection.
stdio.h = For adding header file and to input the printf ( ) programming code in the computer.
TO DISPLAY A TEXT ON A SCANER:
#include<stdio.h>
#include<conio.h>
void main( )
{
clrscr( );
float A_draft,DC,DCP,waste,T_draft;
printf(“Enter DC,DCP,present waste=”);
scanf(“%f%f%f,& DC,&DCP,&waste”);
T_draft=DC/DCP
A_draft=(T_draft*100)/(100-waste);
Printf(“\n\n Actual draft=%0.2f”,A_draft);
getch( );
}
CONCLUSION:
Programming in “C” is very essential for programming. This is a vital experiment for us. I hope this experiment is very helpful in our practical life in future.
By-
S. M. Hossen Uzzal
Production Officer
Monno Fabrics Ltd., Manikgonj
Email: uhossen@gmail.com