TECHNOLOGIES
FORUMS
JOBS
BOOKS
EVENTS
INTERVIEWS
Live
MORE
LEARN
Training
CAREER
MEMBERS
VIDEOS
NEWS
BLOGS
Sign Up
Login
No unread comment.
View All Comments
No unread message.
View All Messages
No unread notification.
View All Notifications
Answers
Post
An Article
A Blog
A News
A Video
An EBook
An Interview Question
Ask Question
Forums
Monthly Leaders
Forum guidelines
Ken H
NA
646
360.2k
Least Common Multiple and Greatest Common Divisor in c
Jul 20 2013 11:34 PM
hi,
input any two positive integers how to seek their Least Common Multiple and Greatest Common Divisor in c.
thank.
#include<stdio>
void main(void)
{
int x,y;
printf("input any two positive integers:");
scanf("%d %d",&x,&y);
/*
...
*/
}
Reply
Answers (
4
)
the string to extract digits and save to integer array in C
Distortion of Shape while Moving it on a Panned Area