HOME

Start

Control Statements

Array

Function

Structure

Pointer

File

Projects

 

 

 

 

 

 

C programing

Ckalari.com is the No.1 website to get the best of C programs, free source codes, projects in c language……  

A C program to convert paisa to rupee

#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