Start
Control Statements
Array
Function
Structure
Pointer
File
Projects
#include<stdio.h>
#include<conio.h>
void main()
{
int p,r; clrscr();
printf("Enter the value of paisa");
scanf("%d",&p);
r=p/100;
p=p%100;
printf("It is %d rube %d paisa",r,p);
getch();
}
Copyright © 2007-2008 www.ckalari.com