Friday, 28 August 2020

Modulus using function

We can also find modulus using function. So the following program explains about modulus.

#include<stdio.h>
#include<conio.h>
void mod()
{
int x,y,z;
clrscr();
printf("Enter the number\n");
scanf("\n%d%d",&y,&z);
x=y%z;
printf("The result of mod=%d\n",x);
}
void main()
{
mod();
getch();
}


No comments:

Post a Comment

C Programming

What is DBMS in brief?

A Database Management System (DBMS) is a software suite designed to efficiently manage, organize, store, manipulate, and retrieve data. It a...