ADVT POST

division of two numbers c program c programming tutorial

 Division of two numbers c program c programming tutorial


#include<stdio.h>
#include<conio.h>
void main()
{
clrscr();
int a,b,c;
a=10;
b=20;
c=b%a;
printf ("%d",c);
getch();
}
Share on Google Plus
    Blogger Comment
    Facebook Comment

0 comments:

Post a Comment

Note: only a member of this blog may post a comment.