-
Notifications
You must be signed in to change notification settings - Fork 3.7k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Co- Prime check in an easy approach using C #6568
Labels
Comments
ShuvamBag
changed the title
Co- Prime check in an easy approach using C++
Co- Prime check in an easy approach using C
Oct 9, 2022
what do you want? if you want to contribute plz make a pr on this issue. thanks |
can u pls assign me to this issue?? |
i want to contribute in this |
hello sir, I would like to contribute in this issue. Please assign this to me. |
@AdiChat @ShuvamBag please review the merged code. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
#include<stdio.h>
int coprime(int num1, int num2)
{
int min, count, flag = 1;
}
int main()
{
int n1, n2;
}
// This is a co- prime number check program made using c.
The text was updated successfully, but these errors were encountered: