Joined
Last Seen
0 Reputation Points
Unknown Quality Score
No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
0 Endorsements
Ranked #72.8K
2 Posted Topics
#include<stdio.h> int main() { int k,i; printf("ENTER A NUMBER :"); scanf("%d",&k); for(i=1;i<=k;i++){ if(k%i==0) printf("%d\n",i); } return 0; }
how to write a recursive function to read and print all the data from a file
The End.
v.r.t