Print the pyramid using c language

December 10, 2018
USING C LANGUAGE PRINT THE PYRAMID







C language code to display the pattern:

#include<stdio.h>
#include<conio.h>
void main()
{
int noofrows,rows,col1,col2,noofcols;
clrscr();
printf ("Enter the number: ");
scanf ("%d",&noofrows);
noofcols=noofrows-1;
for(rows=1;rows<=noofrows;rows++)
       {
for(col1=1;col1<=noofcols;col1++)
       {
printf(" ");
       }
noofcols--;
for(col2=1;col2<=rows;col2++)
       {
printf (" *");
       }
printf ("\n");
       }
getch ();
}

--------------------------------------------------------------------------------------------------------------
Output:

Enter the number:5
                      *
                    *  *
                  *  *  *
                *  *  * *
             *  *  *  *  *



Print the pyramid using c language Print the pyramid using c language Reviewed by Amit Waghmare on December 10, 2018 Rating: 5

c language code to print fibonacci series

December 09, 2018

C LANGUAGE CODE TO PRINT FIBONACCI SERIES


Introduction
                 

                              Fibonacci series means if we are giving input as 7 then the output is 0  1  1  2  3  5.
Means in output first digit is 0 then second is 1,addition of first and second digit is third digit i.e.0+1=1,next is 1+1=2,then 2+1=3,then 3+2=5.
                    The next digit is 5+3=8 but 8 is greater than 7(8>7) i.e.(8!<7) so the control is transfer to the
out of the loop.The actual code is as follows:

code:

#include<stdio.h>
#include<conio.h>
void main()
{
int no,a=0,b=1,c=0;
clrscr();
printf("Enter the number to print fibonacci series:");
scanf("%d",&no);
while(no>c)
{
printf("%d  ",c);
c=a+b;
b=a;
a=c;
}
getch();
return 0;
}
------------------------------------------------------------------------------------------------------------
Output:
           Enter the number to print fibonacci series:7
           0  1  1  2  3  5
     


c language code to print fibonacci series c language code to print fibonacci series Reviewed by Amit Waghmare on December 09, 2018 Rating: 5

SWAPPING OF TWO NUMBERS

October 07, 2018



SWAPPING OF TWO NUMBERS:
#include<studio.h>
#include<condo.h>
int main()
{
int a, b;
clrscr();
printf("ENTER TWO NUMBERS: \n");
scanf("%d%d",&a,&b);
a=a+b;
b=a-b;
a=a-b;
printf("a=%d\n b=%d\n", a, b);
getch();
}
__________________________________________________________
Output:
ENTER TWO NUMBERS:13
                                            45
a=45
b=13



SWAPPING OF TWO NUMBERS SWAPPING OF TWO NUMBERS Reviewed by Amit Waghmare on October 07, 2018 Rating: 5

SUM OF THE SQUARE OF THE DIGIT OF THE NUMBER

October 07, 2018

SUM OF THE SQUARE OF THE DIGIT OF THE NUMBER:
#include<studio.h>
#include<conio.h>
int main()
{
int no, temp, sum=0;
clrscr ();
prints("ENTER THE NUMBER: \n");
scanf("%d",&no);
while(no/10!=0)
{
temp=no%10;
sum=sum+temp*temp;
no=no/10;
}
sum=sum+no*no;
printf("sum=%d", sum);
getch();
return 0;
}
___________________________________________________________________
Output:
ENTER THE NUMBER:786
sum=149



SUM OF THE SQUARE OF THE DIGIT OF THE NUMBER SUM OF THE SQUARE OF THE DIGIT OF THE NUMBER Reviewed by Amit Waghmare on October 07, 2018 Rating: 5