Logo 
Search:

C Programming Article

Submit Article
Comments on C Program to Find out when will be My Death Date
Category: C Programming (Beginners)    Author: Muhammed Athil

C Program to Find out when will be My Death Date?


Muhammed Athil
Muhammed Athil from IndiaJan 14
copy whole code. and paste to notepad and save with extension.c
Ashish Kumar
Ashish Kumar from IndiaMay 12
how to download this program sir, plz tell me
Muhammed Athil
Muhammed Athil from IndiaJul 04
@Vhenieze Boholst from Philippines



plz run the program


#include<stdio.h>
#include<conio.h>
void main()
{
int a;
int i=1;
clrscr();
printf("Enter the number\n");
scanf("%d",&a);
printf("And it's divisible numbers are.....\n");
while(i<=a)
{
if (a%i==0)
{
printf("%d\n",i);
}
i++;
}
getch();
}
Vhenieze Boholst
Vhenieze Boholst from PhilippinesJun 22
please answer immidiately:
Write a program that inputs a positive integer and outputs its proper divisors.


Please enter your Comment
  • Comment should be atleast 15 Characters.
  • Please put code inside [Code] your code [/Code].