<?xml version="1.0" encoding="UTF-8" standalone="no"?><?xml-stylesheet href="http://www.blogger.com/styles/atom.css" type="text/css"?><rss xmlns:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd" version="2.0"><channel><title>CSedukit.com</title><description>C programming</description><managingEditor>noreply@blogger.com (Anoop)</managingEditor><pubDate>Thu, 24 Oct 2024 07:59:53 -0700</pubDate><generator>Blogger http://www.blogger.com</generator><openSearch:totalResults xmlns:openSearch="http://a9.com/-/spec/opensearchrss/1.0/">6</openSearch:totalResults><openSearch:startIndex xmlns:openSearch="http://a9.com/-/spec/opensearchrss/1.0/">1</openSearch:startIndex><openSearch:itemsPerPage xmlns:openSearch="http://a9.com/-/spec/opensearchrss/1.0/">25</openSearch:itemsPerPage><link>http://cprogramminghelpblog.blogspot.com/</link><language>en-us</language><itunes:explicit>no</itunes:explicit><itunes:subtitle>C programming</itunes:subtitle><itunes:owner><itunes:email>noreply@blogger.com</itunes:email></itunes:owner><item><title>Progeam to convert Decimal number to Binary</title><link>http://cprogramminghelpblog.blogspot.com/2009/01/progeam-to-convert-decimal-number-to.html</link><author>noreply@blogger.com (Anoop)</author><pubDate>Fri, 2 Jan 2009 03:39:00 -0800</pubDate><guid isPermaLink="false">tag:blogger.com,1999:blog-7827471622145934369.post-4107090891574702644</guid><description>/*Progeam to convert Decimal number to Binary*/&lt;br /&gt;&lt;br /&gt;//&lt;br /&gt;&lt;br /&gt;#include &lt;stdio.h&gt;&lt;br /&gt;#include &lt;conio.h&gt;&lt;br /&gt;void main()&lt;br /&gt;{&lt;br /&gt; int b[50],i;&lt;br /&gt; int n;&lt;br /&gt; clrscr();&lt;br /&gt; printf("Enter the number\n");&lt;br /&gt; scanf("%d",&amp;n);&lt;br /&gt;  for(i=0;n&gt;0;i++)&lt;br /&gt;  {&lt;br /&gt;   b[i]=n%2;&lt;br /&gt;   n=n/2;&lt;br /&gt;  }&lt;br /&gt; printf("The binary number is=\t");&lt;br /&gt;  for(i=i-1;i&gt;=0;--i)&lt;br /&gt;  { &lt;br /&gt;   printf("%d",b[i]);&lt;br /&gt;  }&lt;br /&gt; getch();&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;--&gt;</description><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">0</thr:total></item><item><title>Program to convert binary number to Decimal number</title><link>http://cprogramminghelpblog.blogspot.com/2009/01/program-to-convert-binary-number-to.html</link><author>noreply@blogger.com (Anoop)</author><pubDate>Fri, 2 Jan 2009 03:18:00 -0800</pubDate><guid isPermaLink="false">tag:blogger.com,1999:blog-7827471622145934369.post-6751350614560713162</guid><description>/*Program to convert binary number to Decimal number */&lt;br /&gt;&lt;br /&gt;//&lt;br /&gt;&lt;br /&gt;#include&lt;stdio.h&gt;&lt;br /&gt;#include&lt;conio.h&gt;&lt;br /&gt;#include&lt;math.h&gt;&lt;br /&gt;void main()&lt;br /&gt;{&lt;br /&gt; int dec=0,i=0,d;&lt;br /&gt; long bin;&lt;br /&gt; clrscr();&lt;br /&gt; printf("Enter the number \n");&lt;br /&gt; scanf("%ld",&amp;bin);&lt;br /&gt;  for(i=0;bin&gt;0;i++)&lt;br /&gt;  {&lt;br /&gt;  d=bin%10;&lt;br /&gt;  dec=dec+(d*pow(2,i));&lt;br /&gt;  bin=bin/10;&lt;br /&gt;  }&lt;br /&gt; printf("The decimal =\t%d",dec);&lt;br /&gt; getch();&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;--&gt;</description><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">0</thr:total></item><item><title>Program to find prime number</title><link>http://cprogramminghelpblog.blogspot.com/2009/01/program-to-find-prime-number.html</link><author>noreply@blogger.com (Anoop)</author><pubDate>Fri, 2 Jan 2009 03:13:00 -0800</pubDate><guid isPermaLink="false">tag:blogger.com,1999:blog-7827471622145934369.post-2926443031439661147</guid><description>/*Program to find prime number*/&lt;br /&gt;&lt;br /&gt;//&lt;br /&gt;#include&lt;conio.h&gt;&lt;br /&gt;#include&lt;stdio.h&gt;&lt;br /&gt;void main()&lt;br /&gt;{&lt;br /&gt; int n,i,p;&lt;br /&gt; clrscr();&lt;br /&gt; printf("Enter the number \n");&lt;br /&gt; scanf("%d",&amp;n);&lt;br /&gt; if(n==2)&lt;br /&gt; printf("The number is a prime");&lt;br /&gt; else&lt;br /&gt; {&lt;br /&gt;  for(i=2;i&lt;n/2;i++)&lt;br /&gt;  {&lt;br /&gt;  p=n%i;&lt;br /&gt;  if(p==0)&lt;br /&gt;   {&lt;br /&gt;   printf("The number is prine");&lt;br /&gt;   break;&lt;br /&gt;   }&lt;br /&gt;  }&lt;br /&gt; if(p!=0)&lt;br /&gt; printf("number is not prime");&lt;br /&gt; }&lt;br /&gt;getch();&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;--&gt;</description><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">0</thr:total></item><item><title>Program to genarate fibanocci serous</title><link>http://cprogramminghelpblog.blogspot.com/2009/01/program-to-genarate-fibanocci-serous.html</link><author>noreply@blogger.com (Anoop)</author><pubDate>Fri, 2 Jan 2009 03:09:00 -0800</pubDate><guid isPermaLink="false">tag:blogger.com,1999:blog-7827471622145934369.post-7253336524754106616</guid><description>/*Program to genarate fibanocci serous*/&lt;br /&gt;//&lt;br /&gt;#include&lt;conio.h&gt;&lt;br /&gt;#include&lt;stdio.h&gt;&lt;br /&gt;void main()&lt;br /&gt;{&lt;br /&gt; int a,b,c,n,i;&lt;br /&gt; clrscr();&lt;br /&gt; printf("Enter the number \n");&lt;br /&gt; scanf("%d",&amp;n);&lt;br /&gt; a=-1;&lt;br /&gt; b=1;&lt;br /&gt; printf("The Fiboacci serous is=\t");&lt;br /&gt; for (i=0;i&lt;n;i++)&lt;br /&gt; {&lt;br /&gt;  c=a+b;&lt;br /&gt; printf("%d\t",c);&lt;br /&gt; a=b;&lt;br /&gt; b=c;&lt;br /&gt; }&lt;br /&gt;getch();&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;--&gt;</description><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">0</thr:total></item><item><title>Program to find the factorial of anumber</title><link>http://cprogramminghelpblog.blogspot.com/2009/01/program-to-find-factorial-of-anumber.html</link><author>noreply@blogger.com (Anoop)</author><pubDate>Fri, 2 Jan 2009 03:05:00 -0800</pubDate><guid isPermaLink="false">tag:blogger.com,1999:blog-7827471622145934369.post-5831587629419850749</guid><description>/*Program to find the factorial of anumber*/&lt;br /&gt;&lt;br /&gt;#include&lt;stdio.h&gt;&lt;br /&gt;#include&lt;conio.h&gt;&lt;br /&gt;void main()&lt;br /&gt;{&lt;br /&gt;int n,r;&lt;br /&gt;clrscr();&lt;br /&gt;printf("Enter anumber ");&lt;br /&gt;scanf("%d",&amp;n);&lt;br /&gt;r=fact(n);&lt;br /&gt;printf("The Factorial is=\t%d" ,r);&lt;br /&gt;getch();&lt;br /&gt;}&lt;br /&gt; fact(int x)&lt;br /&gt; {&lt;br /&gt;  int f;&lt;br /&gt;  if (x==1)&lt;br /&gt;  return (1);&lt;br /&gt;   else&lt;br /&gt;   f=x*fact(x-1) ;&lt;br /&gt;   return(f);&lt;br /&gt; }</description><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">0</thr:total></item><item><title>Program to find biggest of 3 numbers</title><link>http://cprogramminghelpblog.blogspot.com/2009/01/program-to-find-biggest-of-3-numbers.html</link><author>noreply@blogger.com (Anoop)</author><pubDate>Fri, 2 Jan 2009 02:57:00 -0800</pubDate><guid isPermaLink="false">tag:blogger.com,1999:blog-7827471622145934369.post-1360143333597606813</guid><description>/*Program to find biggest of 3 numbers*/&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;#include&lt;stdio.h&gt;&lt;br /&gt;#include&lt;conio.h&gt;&lt;br /&gt;void main()&lt;br /&gt; {&lt;br /&gt; int a,b,c;&lt;br /&gt; clrscr();&lt;br /&gt; printf("Enter three number \n");&lt;br /&gt; scanf("%d%d%d",&amp;amp;a,&amp;amp;b,&amp;amp;c);&lt;br /&gt;  if(a&gt;b)&lt;br /&gt;  {&lt;br /&gt;  if(a&gt;c)&lt;br /&gt;  printf("the large is =%d",a);&lt;br /&gt;  else&lt;br /&gt;  printf("The large is =%d",c);&lt;br /&gt;  }&lt;br /&gt; else&lt;br /&gt;   {&lt;br /&gt;    if(b&gt;c)&lt;br /&gt;    printf("large is=%d",b);&lt;br /&gt;    else&lt;br /&gt;    printf("large is =%d",c);&lt;br /&gt;   }&lt;br /&gt; getch();&lt;br /&gt;}&lt;br /&gt;&lt;!-- #include&lt;stdio.h&gt;&lt;br /&gt;#include&lt;conio.h&gt;&lt;stdio.h&gt;&lt;conio.h&gt;&lt;br /&gt;void main()&lt;br /&gt;{&lt;br /&gt;int a,b,c;&lt;br /&gt;clrscr();&lt;br /&gt;printf("Enter three number \n");&lt;br /&gt;scanf("%d%d%d",&amp;amp;a,&amp;amp;b,&amp;amp;c);&lt;br /&gt;if(a&gt;b)&lt;br /&gt;{&lt;br /&gt;if(a&gt;c)&lt;br /&gt;printf("the large is =%d",a);&lt;br /&gt;else&lt;br /&gt;printf("The large is =%d",c);&lt;br /&gt;}&lt;br /&gt;else&lt;br /&gt;{&lt;br /&gt;if(b&gt;c)&lt;br /&gt;printf("large is=%d",b);&lt;br /&gt;else&lt;br /&gt;printf("large is =%d",c);&lt;br /&gt;}&lt;br /&gt;getch();&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;--&gt;&lt;!--  #include&lt;stdio.h&gt;&lt;br /&gt;#include&lt;conio.h&gt;&lt;br /&gt;void main()&lt;br /&gt;{int a,b,c;&lt;br /&gt;clrscr();&lt;br /&gt;printf("Enter three number \n");&lt;br /&gt;scanf("%d%d%d",&amp;amp;a,&amp;amp;b,&amp;amp;c);&lt;br /&gt;if(a&gt;b)&lt;br /&gt;{if(a&gt;c)&lt;br /&gt;printf("the large is =%d",a);&lt;br /&gt;else&lt;br /&gt;printf("The large is =%d",c);&lt;br /&gt;}&lt;br /&gt;else&lt;br /&gt;{if(b&gt;c)&lt;br /&gt;printf("large is=%d",b);&lt;br /&gt;else&lt;br /&gt;printf("large is =%d",c);&lt;br /&gt;}getch();&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;--&gt;</description><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">0</thr:total></item></channel></rss>