Have a Read!
Saturday, January 29, 2011
C PROGRAM FOR SQUARE/RECTANGLE
int main()
{
int x,y,h,w;
printf("ENTER THE HEIGHT AND WIDTH OF SQUARE/RECTANGLE\n\n");
scanf("%d%d",&h,&w);
for(y=1;y<=h;y++)
{
for(x=1;x<=w;x++)
{
printf("^");
}
printf("\n");
}
return 0;
}
C PROGRAM FOR DIAMOND
int main()
{
int counter,x,y,z;
int count,a,b,c,input;
printf("PLEASE ENTER the width");
scanf("%d",&input);
counter=0;
for(x=input;x>=1;x--)
{
for(y=1;y<=x;y++)
{
printf(" ");
}
counter=counter+1;
for(z=1;z<=counter;z++)
{printf("* ");}
printf("\n");}
count=input;
for(a=1;a<=input;a++)
{
printf(" ");
for(b=1;b<=a;b++)
{
printf(" ");
}
count=count-1;
for(c=1;c<=count;c++)
{
printf("* ");
}
printf("\n");
}
return 0;
}
C PROGRAM FOR PYRAMID
int main()
{
int counter,x,y,z;
counter=0;
for(x=15;x>=1;x--)
{
for(y=1;y<=x;y++)
{
printf(" ");
}
counter=counter+1;
for(z=1;z<=counter;z++)
{printf("* ");}
printf(" \n");}
return 0;
}
C PROGRAM FOR HOLLOW TRIANGLE
int main()
{
int x,y,z;
printf("*\n");
for(x=1;x<10;x++){
printf("*");
for(y=1;y<=x;y++){
printf(" ");
}
printf("*\n");
}
for(z=1;z<=10;z++)
{printf("*");}
printf("**");
printf("\n");
return 0;
}
C PROGRAM FOR TRIANGLE
int main()
{
int x,y,h;
printf("ENTER HEIGHT OF TRIANGLE:\n");
scanf("%d",&h);
for(x=1;x<=h;x++){
for(y=1;y<=x;y++){
printf("^");
}
printf("\n");
}
return 0;
}
C PROGRAM FOR FACTORIAL OF A NUMBER
int main () {
int i,num,factorial=1;
printf("ENTER THE NUMBER");
scanf("%d",&num);
if(num<0)
printf("Factorial not possible");
else
{
for (i=1;i<=num;i++)
{factorial=factorial*i;}
printf("\nFACTORIAL=%d\n",factorial);
}
return 0;
}
C PROGRAM FOR ARMSTRONG NUMBER UPTO LIMIT
int main () {
int num,n,sum,r,limit;
printf("ENTER THE LIMIT\n");
scanf("%d",&limit);
printf("Armstrong numbers upto given limit are:\n");
for(num=1;num<limit;num++)
{
n = num;
sum = 0 ;
while (n!=0)
{
r=n%10;
sum=sum+(r*r*r);
n=n/10;
}
if(sum==num)
{printf("%7d\n",num);}
}
return 0;
}
C PROGRAM FOR ARMSTRONG NUMBER
int main () {
int num,n,sum,r;
printf("ENTER THE NUMBER\n");
scanf("%d",&num);
n=num;
sum=0;
while(n!=0)
{
r=n%10;
sum=sum+(r*r*r);
n=n/10;
}
if(sum==num)
{printf("\n%d is armstrong number\n",num);}
else
{printf("\n%d is not armstrong number\n",num);}
return 0;
}
C PROGRAM FOR FIBONACCI SERIES
int main () {
int a,b,n,next,count;
printf("how many terms are required 2<=n<=24\n");
scanf("%d",&n);
a=0;
b=1;
printf("\n\nFIBNONACCI TERMS ARE:\n");
printf("%8d%8d",a,b);
count=2;
while (count<n)
{
next=a+b;
printf("%8d",next);
a=b;
b=next;
count++;
}
printf("\n");
return 0;
}
Thursday, January 27, 2011
C PROGRAM FOR SUM OF EVEN AND ODD NUMBERS UPTO LIMIT
int main ()
{
int n,i,sumeven=0,sumodd=0;
printf("ENTER THE LIMIT\n");
scanf("%d",&n);
for (i=1;i<=n;i++)
{
if ((i%2)==0)
{sumeven=sumeven+i;}
else
{sumodd=sumodd+i;}
}
printf("\n\nSUM OF EVEN NUMBERS UPTO %d is %d\n",n,sumeven);
printf("\n\nSUM OF ODD NUMBERS UPTO %d is %d\n",n,sumodd);
return 0;
}
C PROGRAM FOR NTH TERM OF FIBONACCI SERIES
int main()
{
int x=0,y=1,z,nth,i;
printf("\n\nPlease Enter The Term Number:");
scanf("%d",&nth);
for(i=1;i<=nth;i++)
{z=x+y;
x=y;
y=z;
}
printf("\nthe %dth term of Fibonacci Series is is %d\n\n\n",nth,z);
return 0;
}
C PROGRAM FOR COMPLETE SQUARE TRIANGLE
#include <stdio.h>
#include <math.h> // for sqrt root function
int main ()
{
int b,p; // initialization
int h; // initialization
printf("All the Applicable Triangles are:\n");
printf("Base \t Perp \t Hyp \n"); // to represent sides of triangle which are satisfied by pythagoras theorem
for(b=1;b<=19;b++) // first loop starts with one side from 1-19
{ for (p=1; p<=19;p++) // second loop starts with b=loop state untill p=19
{ for (h=sqrt((p*p)+(b*b));h==sqrt((p*p)+(b*b));h++) // 3rd loop takes the first input only and becomes false for nxt loop so no further execution occurs
if (h>=20) // if hyp is more than 20 sides wont be printed
break;
else
{printf(" %d \t %d \t %d \n",b,p,h); // sides printed if h^2=b^2+p^2 ans is integer
} // end of third loop
} // end of second loop
} //end of first loop
return 0;
} //end main
C PROGRAM FOR PRIME FACTORS OF A NUMBER
int main()
{ int x,q,no,s;
printf("Enter the Number: "); // the number to be operated
scanf("%d",&no);
printf("\nThe Prime Factors of %d Follow:\n" ,no);
for ( x=2;(no/x)>=1;x++) // entry to only loop which lets only prime factors to be printed
{ if ((no%x)==0) // prints the factor if mod is 0
{printf("%d ",x);
s=(no/x);
no=s; // changes the number for entry into loop again
x=x-1; // it makes the x same when entered again in the loop
}
}// loop end
printf("\n");
return 0;
}
C PROGRAM FOR PRIME NUMBER way2
#include<stdio.h>
int main()
{ int x,q,no,s,originalno;
printf("Enter the Number: ");
scanf("%d",&no);
originalno=no;
for ( x=2;(no/x)>=1;x++)
{ if ((no%x)==0)
{
if (x==originalno)
{printf("%d is a PRIME number\n",originalno);}
s=(no/x);
no=s;
x=x-1;
}
}
if(x!=originalno)
{printf("%d is not a prime number\n",originalno);}
return 0;
}
C PROGRAM FOR PRIME NUMBER way1
int main()
{
int x,y,z,a=0;
printf("enter the number: ");
scanf("%d",&x);
for (y=2;y<x;y++)
{ if (x%y==0)
{a=y;}
}// loop end
if(a==0)
{printf("Number is Prime\n");}
else
{printf("Number is not Prime\n");}
return 0;
}
C PROGRAM FOR FACTORS OF A NUMBER
int main()
{
int x,y,z;
printf("enter the number: ");
scanf("%d",&x);
printf("The factors are as follow:\n");
for (y=1;y<=x;y++)
{ if (x%y==0)
printf("%d\n",y);}// loop end
return 0;
}
C PROGRAM FOR PRINTING MULTIPLICATION TABLE OF No
int main() {
int i,num;
printf("ENTER THE NUMBER");
scanf("%d",&num);
for (i=0;i<=10;i++)
{printf("%d * %2d = %d\n",num,i,num*i);}
return 0;
}
C PROGRAM FOR SUM OF N NUMBERS USING while,Do while & for Loop
// WHILE LOOP
#include<stdio.h>
int main()
{
int n,i=1,sum=0;
printf("ENTER THE VALUE OF N:");
scanf("%d",&n);
printf("First %d numbers are\n",n);
while (i<=n)
{
printf("%7d ",i); //%7 to print the digit within 7 slots
sum = sum +i;
i++;
}
printf("\nSum = %d\n",sum);
return 0;
}
// DO WHILE LOOP
#include<stdio.h>
int main ()
{
int n,i=1,sum=0;
printf("ENTER THE VALUE OF N:");
scanf("%d",&n);
printf("First %d numbers are\n",n);
do
{
printf("%7d,",i);
sum=sum+i;
i++;
}
while(i<=n);
printf("\n\nSum=%d\n",sum);
return 0;
}
//FOR LOOP
#include<stdio.h>
int main()
{
int n,i=1,sum=0;
printf("ENTER THE VALUE OF N:");
scanf("%d",&n);
printf("First %d numbers are\n",n);
for(i=1;i<=n;i++)
{
printf("%7d",i);
sum=sum+i;
}
printf("\n\nSum = %d",sum);
return 0;
}
C PROGRAM FOR SOLVING QUADRATIC EQUATION
#include<math.h>
int main()
{
float a,b,c,r1,r2,img1,img2,disc;
printf("\nENTER THE Co-officients\n");
scanf("%f%f%f",&a,&b,&c);
if (a==0)
{
if (b==0)
printf("Equation is Degenerate\n");
else
{
printf("Linear equation has single root");
r1=-c/b;
printf("\nRoot=%.2f",r1);
}
}
else
{
disc=(b*b)-(4*a*c);
if(disc>0)
{
printf("Real and disctinct roots\n");
r1=(-b+sqrt(disc))/(2*a);
r2=(-b-sqrt(disc))/(2*a);
img1=img2=0;
}
else
{
if(disc==0)
{
printf("Real and equal roots\n");
r1=r2=(-b)/(2*a);
img1=img2=0;
}
else
{
printf("Imaginary roots\n");
r1=r2=-b/(2*a);
img1=sqrt(-disc)/(2*a);
img2=img1;
}
}
printf("\nFirst root is \n");
printf("\nReal part=%.2f Imaginary part=%.2f\n",r1,img1);
printf("\nSecond root");
printf("\nReal part=%.2f Imaginary part=%.2f\n",r2,img2);
}
return 0;
}
C PROGRAM FOR TRIANGLE AREA AND ITS TYPE
#include<stdio.h>
#include<math.h>
int main ()
{
float a,b,c,s,area;
printf("\nENTER THE THREE SIDES OF TRIANGLE\n");
scanf("%f%f%f",&a,&b,&c);
if( ((a+b)>c) && ((a+c)>b) && ((b+c)>a))
{
if ((a==b) && (a==c))
{printf("\nEQUILATERAL TRIANGLE\n");}
else
{
if((a==b) || (a==c) || (b==c) )
printf("\nISOCELES TRIANGLE\n");
else
printf("\nSCALENE TRIANLGE\n");
}
s=(a+b+c)/2;
area=sqrt(s*(s-a)*(s-b)*(s-c));
printf("AREA IS %.2f sq units\n",area);
}
else
{printf("TRIANGLE NOT POSSIBLE");}
retur
C PROGRAM FOR SWITCH CONTROL
int main ()
{
int day;
printf("ENTER THE WEEKDAY\n");
scanf("%d",&day);
switch(day)
{
case 1: printf("weekday is Sunday\n");
break;
case 2: printf("weekday si Monday\n");
break;
case 3: printf("weekday is Tuesday\n");
break;
case 4: printf("weekday is Wednesday\n");
break;
case 5: printf("weekday is Thursday\n");
break;
case 6: printf("weekday is Friday\n");
break;
case 7: printf("weekday is Saturday\n");
break;
default:printf("Wrong choice entered\n");
break;
}
return 0;
}
C PROGRAM FOR 5 NUMBERS AVERAGE TELLER
int main ()
{
float a,b,c,d,e,sum,avg;
printf("ENTER THE FIVE NUNBERS\n");
scanf("%f%f%f%f%f",&a,&b,&c,&d,&e);
sum=a+b+c+d+e;
avg=sum/5;
printf("SUM=%.2f\n",sum); // .2 is used to restrict upto 2 decimal digit
printf("AVERAGE=%.2f\n,",avg);
return 0;
}
C PROGRAM FOR CONVERTING NUMBER TO YEARS WEEKS & DAYS
int main () {
int number,years,weeks,days;
printf("ENTER THE NUMBER\n");
scanf("%d",&number);
years=number/365;
weeks=(number-(years*365))/7;
days=(number-(years*365)-(weeks*7));
printf("\nYEARS=%d\nWEEKS=%d\nDays=%d\n",years,weeks,days);
return 0;
}
C PROGRAM FOR LEAP YEAR
int main() {
int year;
printf("ENTER THE YEAR\n");
scanf("%d",&year);
if ((year%4==0)&& (year%100!=0))
{printf("%d is a leap year\n",year);}
else
printf("%d is not a leap year\n",year);
return 0;
}
C PROGRAM FOR GRADE CALCULATOR
int main () {
int sub1,sub2,sub3,sub4,sub5,total;
float average;
printf("ENTER THE NUMBERS IN 5 SUBJECTS OF THE STUDENT\n");
scanf("%d%d%d%d%d",&sub1,&sub2,&sub3,&sub4,&sub5);
total=sub1+sub2+sub3+sub4+sub5;
average=total/5;
if(average>=80)
{printf("STUDENT HAS GOT A GRADE\n");}
else if(average>=70)
{printf("STUDENT HAS GOT B GRADE\n");}
else if(average >=60)
{printf("STUDENT HAS GOT C GRADE\n");}
else if(average>=50)
{printf("STUDENT HAS GOT D GRADE\n");}
else if(average>=40)
{printf("STUDENT HAS GOT E GRADE\n");}
else
{printf("STUDENT HAS FOT F GRADE\n");}
return 0;
}
C PROGRAM FOR CONDITIONAL OPERATER
int main()
{
int age;
printf("ENTER YOUR AGE IN YEARS\n");
scanf("%d",&age);
(age>=18) ?printf("\nYOU SHOULD VOTE\n"): printf("\nYOU CANNOT VOTE\n");
return 0;
}
C PROGRAM FOR GETTING ASCII CODE way2
int main()
{
int z;
printf("ENTER THE CHARACTER\n");
z=getchar();
printf("THE ASCII VALUE OF CHARACTER is %d\n",z);
return 0;
}
C PROGRAM GOR ASCII CODE way1
#include<stdio.h>
int main()
{
int x;
char character;
printf("ENTER THE CHARACTER\n");
scanf("%c",&character);
x=character;
printf("THE ASCII VALUE OF %c is %d\n",character,x);
return 0;
}
Wednesday, January 26, 2011
C PROGRAM TO REVERSE 5 DIGIT NUMBER
#include<stdio.h>
int main()
{
int no,b,c,d,e,rev; /*no is the number entered by user rev is the reverse number which will be displayed at the end*/
printf("enter a five digit no.\n");
scanf("%d",&no);
if(no<=99999 && no>=10000) /*this if statement is to make sure that user enters a five digit number
otherwise the program will display "you have not entered a five digit number"*/
{
b=no/10; /*int is used so number after decimal will be neglected*/
c=b/10;
d=c/10;
e=d/10;
rev=(no-10*b)*10000; /*this formula will calculate unit digit of number entered by user and multiply by 10000
in this way it will become first digit of reverse number*/
rev=rev+((b-10*c)*1000); /*this formula will calculate the tens digit of number entered by user and multiply by 1000
the resultant will be added to previous calculated no. i.e rev so first two digits are
reversed.in the similar way all digits will be reversed*/
rev=rev+((c-10*d)*100);
rev=rev+((d-10*e)*10);
rev=rev+e;
printf("%d\n",rev);
}
else /*this else is with the first if statement*/
printf("you have not entered a five digit no.\n");
return 0;
}
C PROGRAM FOR BASIC FORMULAS
/*this program can solve formulas:
1)force=mass*acceleration 2)coversion of litres in gallons 3)conversion of km in meters
this program will display a menu and its your choice which formula you want to use*/
#include<stdio.h>
int main()
{
float choice;
float mass;
float acc;
float force;
float lt;
float gall;
float meter;
float km;
printf("which formula do you want to use\n\n1)force=mass*acceleration\n2)conversion of litres of petrol in gallons\n3)conversion of distance in km into meters\n");
printf("\nenter a choice 1,2 or 3\n");
scanf("%f",&choice); /*this will take a number from user that which formula he want to solve*/
if(choice==1 || choice==2 || choice==3) /*this if statement makes sure that choice entered is 1,2
or 3*/
{
if(choice==1) /*this statement wil execute if the user enters 1 coice which is to find force*/
{
printf("enter mass\n");
scanf("%f",&mass);
printf("enter acceleration\n");
scanf("%f",&acc);
force=mass*acc;
printf("force is %f\n",force);
}
if(choice==2) /*this statement wil execute if the user enters 2 coice*/
{
printf("enter volume of petrol in litres\n");
scanf("%f",<);
gall=lt*0.264172052358148;
printf("volume of petrol in gallons is %f\n",gall);
}
if(choice==3) /*this statement wil execute if the user enters 3 coice*/
{
printf("enter distance in km\n");
scanf("%f",&km);
meter=km*1000;
printf("distance in meters is %f\n",meter);
}
}
else /*this else is with the first if statement*/
printf("you have entered a wrong choice\n");
return 0;
}
C PROGRAM FOR NUMBER VALIDITY FOR DIFFERENT CONDITIONS
This program checks the validity of two numbers.a valid input would satisfy following conditions:
a)inputs should be integers
b)each no. is between 1 and 100
c)two no.s are not divisible to each other
d)difference of two is not less than 1
e)sum of these should not exceed 100
#include<stdio.h>
int main()
{
float no1,no2;
int x,y,z;
z=0; /*this variable is introduced so that in the end we can print inputs are valid or not.for each condition satisfying
its value will increase by 1.if its value becomes 5 at the end then all the conditions are satisfying otherwise not*/
printf("Enter two numbers\n");
scanf("%f",&no1);
scanf("%f",&no2);
/*this procedure will calculate that the number is an integer or not.Any integer devided by 2 will always give remainder 0,1 or -1.(no1-2*x) in this formula x is not a floating point no. so it will neglect no.s after decimal.in this way remainder will always be 0,1 or -1 if no1 is an integer*/
x=no1/2;
if((no1-2*x)==0 || (no1-2*x)==1 || (no1-2*x)==-1) // the || is used for or
{
x=no2/2;
if((no2-2*x)==0 || (no2-2*x)==1 || (no2-2*x)==-1)
{
printf("\nthe numbers are integers\n");
z=z+1;
}
else
printf("one or more numbers are not integers\n");
}
else
printf("one or more numbers are not integers\n");
/*in this procedure it is calculated that the numbers are between 1 and 100 or not.1/no1 will always be greater than 1/100
//or 0.01 if no1>0 and no1<100 and if no1 is between 1 and 100 than no1 cannot be equl to 0,1 or 100*/
if((1/no1)>0.01 && (1/no2)>0.01 && no1!=100 && no2!=100 && no1!=0 && no2!=0 && no1!=1 && no2!=1)
{
printf("numbers enterd are between 1 and 100\n");
z=z+1;
}
else
printf("one or more numbers enterd are not between 1 and 100\n");
//y is not afloating point number so it will neglect any no.s after decimal.according to formula in //the if statement if the two no.s are not divisible the formula will not give 0 resultant
y=no1/no2;
if(no1-no2*y!=0)
{
y=no2/no1;
if(no2-no1*y!=0)
{
printf("numbers are not divisible to each other\n");
z=z+1;
}
}
else
printf("numbers are divisible to each other\n");
//if difference of two numbers is not less then one then one number is atleast +1 greater tnan the other
if(no1>=no2+1 || no2>=no1+1)
{
printf("difference is not less than 1\n");
z=z+1;
}
else
printf("difference is less than 1\n");
//the sum of numbers should not be greater than 100
if((no1+no2)<=100)
{
printf("sum of numbers does not exceed 100\n");
z=z+1;
}
else
printf("sum of numbers exceeds 100\n");
//as mentioned earlier if z becomes 5 at the end it will be printed that inputs are valid otherwise not
if(z==5)
printf("\nall conditions are satisfied inputs are valid\n");
else
printf("\none or more conditions are not satisfied inputs are not valid\n");
return 0;
}
C PROGRAM FOR SWAPPING TWO NUMBERS
int main()
{
int no1;
int no2;
printf("Enter first no\n");
scanf("%d",&no1);
printf("enter second no\n");
scanf("%d",&no2);
printf("\nBefore swapping\n");
printf("no1=%d no2=%d\n",no1 ,no2);
no1=no1+no2;
no2=no1-no2;
no1=no1-no2;
printf("\nAfter swapping\n");
printf("no1=%d no2=%d\n",no1,no2);
return 0;
}
C PROGRAM FOR TAKING CHARACTER INPUTs USING gerchar()
int main () {
char x,y,z;
printf("ENTER THE THREE CHARACTERs\n");
x=getchar();
y=getchar();
z=getchar();
printf("\nTHESE ARE THE CHARACTERS ENTERED\n");
printf("%c\n %c\n %c\n",x,y,z);
return 0;
}
C PROGRAM FOR TAKING MULTIPLE CHARACHTER INPUTS
int main () {
char x,y,z;
printf("PLEASE ENTER 3 CHARACTERS");
scanf("%c%c%c",&x,&y,&z);
printf("THE CHARACTERs ENTERED ARE AS FOLLOW:\n")
printf("%c\n %c\n %c\n ",x,y,z);
return 0;
}
C PROGRAM FOR INITIALIZING AND PRINTING CHARACTER
int main() {
char x='A';
printf("%c \n",x);
return 0;
}
C PROGRAM FOR SMALLEST PRODUCT
int main () {
int x,y,z;
printf("Enter the three numbers:\n");
scanf("%d%d%d",&x,&y,&z);
if ((x*y<y*z) && (x*y<z*x))
{
printf("The smallest product is %d of %d and %d",x*y,x,y);
}
if ((y*z<x*z) && (y*z<x*y))
{
printf("The smallest product is %d of %d and %d",y*z,y,z);
}
if((z*x<x*y)&&(z*x<y*z))
{
printf("The smallest product is %d of %d and %d",z*x,z,x);
}
return 0;
}
C PROGRAM FOR GREATEST PRODUCT
int main () {
int x,y,z;
printf("Enter the three numbers:\n");
scanf("%d%d%d",&x,&y,&z);
if ((x*y>y*z) && (x*y>z*x))
{
printf("The greatest product is %d of %d and %d",x*y,x,y);
}
if ((y*z>x*z) && (y*z>x*y))
{
printf("The greatest product is %d of %d and %d",y*z,y,z);
}
if((z*x>x*y)&&(z*x>y*z))
{
printf("The greatest product is %d of %d and %d",z*x,z,x);
}
return 0;
}
Tuesday, January 25, 2011
C PROGRAM FOR SMALLEST SUM
#include <stdio.h>
int main() {
int x,y,z;
printf("PLEASE ENTER THE NUMBERS\n");
scanf("%d%d%d",&x,&y,&z);
if ( (x+y<x+z) && (x+y<y+z) )
{ printf("THE SUM ie %d OF %d AND %d IS SMALLEST\n",x+y,x,y); }
if ( (y+z<x+y) && (y+z<x+z) )
{printf("THE SUM ie %d OF %d AND %d IS SMALLEST\n",y+z,y,z); }
if( (z+x<x+y ) && (z+x<y+z) )
{ printf("THE SUM IS %d OF %d AND %d IS SMALLEST\n",z+x,z,x); }
return 0;
}
C PROGRAM FOR GREATEST SUM
int main() {
int x,y,z;
printf("PLEASE ENTER THE NUMBERS\n");
scanf("%d%d%d",&x,&y,&z);
if ( (x+y>x+z) && (x+y>y+z) )
{ printf("THE SUM ie %d OF %d AND %d IS GREATEST\n",x+y,x,y); }
if ( (y+z>x+y) && (y+z>x+z) )
{ printf("THE SUM ie %d OF %d AND %d IS GREATEST\n",y+z,y,z); }
if( (z+x>x+y ) && (z+x>y+z) )
{ printf("THE SUM IS %d OF %d AND %d IS GREATEST\n",z+x,z,x); }
return 0;
}
C PROGRAM FOR SMALLEST NUMBER
int main () {
int x,y,z;
printf("ENTER THE THREE NUMBERS\n");
scanf("%d%d%d",&x,&y,&z);
if (x<y && x<z)
{ printf("THE SMALLEST NUMBER IS %d\n",x);}
if (y<x && y<z)
{ printf("THE SMALLEST NUMBER IS %d\n",y); }
if (z<x && z<y)
{ printf("THE SMALLEST NUMBER IS %d\n",z); }
return 0;
}
C PROGRAM FOR GREATEST NUMBER
int main () {
int x,y,z;
printf("ENTER THE THREE NUMBERS\n");
scanf("%d%d%d",&x,&y,&z);
if (x>y && x>z) // && shows that both conditions have to be true
{ printf("THE NUMBER %d IS THE GREATEST",x); }
if (y>x && y>z) // && shows that both conditions have to be true
{ printf("THEN NUMBER %d IS THE GREATEST",y); }
if (z>x && z>y) // && shows that both conditions have to be true
{ printf("THE NUMBER %d IS THE GREATEST" ,z); }
return 0;
}
C PROGRAM FOR BASIC “if statement”
int main() {
int x,y;
printf("ENTER THE NUMBERS\n");
scanf("%d %d",&x,&y);
if(x>y)
{printf("THE NUMBER ENTERED FIRST IS GREATER THAN THE SECOND ie %d\n",x);
}
if (y>x)
{printf("THE NUMBER ENTERED SECOND IS GREATER THAN THE FIRST ie %d\n",y);
}
return 0;
}
C PROGRAM FOR CALCULATING REMAINDER
#include <stdio.h>
int main() {
int x,y,z;
printf("ENTER THE NUMBER TO BE DIVIDED\n");
scanf(“%d”,&x);
printf("ENTER THE DIVISOR\n");
scanf("%d",&y);
z=x%y;
printf("THE REMAINDER IS %d\n",z);
return 0;
}
C PROGRAM FOR SUM DIFFERENCE MULTIPLICATION DIVISION IN FLOAT
int main () {
float x,y,sum,difference,product,division;
printf("ENTER THE NUMBERS\n");
scanf("%d%d",&x,&y);
sum=x+y;
difference=x-y;
product=x*y;
division=x/y;
printf("THE SUM IS : %d\n",sum);
printf("THE DIFFERENCE IS : %d\n",difference);
printf("THE PRODUCT IS : %d\n",product);
printf("THE DIVISION RESULT IS %d\n",division);
return 0;
}
C PROGRAM FOR DIVISION
int main() {
int x,y,division;
printf("ENTER THE NUMBERS\n");
scanf("%d%d",&x,&y);
division=x/y;
printf("THE DIVISION OF TWO NUMBERS IS %d\n",division);
return 0;
}
C PROGRAM FOR SIMPLE MULTIPLICATION
int main () {
int x,y,product;
printf("ENTER THE NUMBERS\n");
scanf("%d%d",&x,&y);
product=x*y;
printf("THE PRODUCT OF TWO NUMBERS IS %d\n",product);
return 0;
}
C PROGRAM FOR SIMPLE SUBTRACTION
int main () {
int x,y,difference;
printf("ENTER THE NUMBERS:\n");
scanf("%d%d",&x,&y);
difference=x-y;
printf("THE DIFFERENCE OF TWO NUMBERS IS %d\n",difference);
return 0;
}
C PROGRAM FOR BASIC ADDITION
int main() {
int x,y,sum;
printf("PLEASE ENTER NUMBERS:\n");
scanf("%d %d",&x,&y);
sum=x+y;
printf("THE SUM OF NUMBERS ENTERED IS %d\n",sum);
return 0;
}
C PROGRAM TO RECEIVE MULTIPLE INPUTS
#include <stdio.h>
int main () {
int a,b,c,d,e;
printf("PLEASE ENTER 5 NUMBERS\n");
scanf("%d %d %d %d %d",&a,&b,&c,&d,&e);
printf("YOU HAVE ENTERED FOLLOWING NUMBERS:\n");
printf("First=%d \nSecond=%d \nThird=%d \nFourth=%d \nFifth=%d\n ",a,b,c,d,e);
return 0;
}
C PROGRAM FOR SIMPLE SCANF
#include <stdio.h>
int main () {
int x;
printf("PLEASE ENTER A NUMBER\n");
scanf("%d",&x);
printf("%d\n",x);
return 0;
}
C PROGRAM FOR SIMPLE PRINTF
#include<stdio.h>
int main() {
printf( "HELLO TO THE WORLD OF C \n" );
return 0;
}