Sie sind auf Seite 1von 1

/* ROLL NO: 1 SEM-1 ICA DIV: A

NAME : VARUN AGGARWAL SUBJECT: FOP


PROGRAM DEFINITION: Write a program to Convert Pound To Kilogram
*/

#include<stdio.h>
#include<conio.h>

int main()
{
int n,kg;
clrscr();
printf("Enter Pounds value: ");
scanf("%d",&n);
kg=n/2;
printf("Kilogram is: %d",kg);
getch();
return 0;
}
/* OUTPUT:
Enter Pounds value: 40
Kilogram is: 20
*/

Das könnte Ihnen auch gefallen