Sunday, July 14, 2013

write a program to print following number pattern ?

1 2 3 4   2 3 4      3 4         4 Program: #include<stdio.h>#include<conio.h>void main(){   int r, p, k,g=0,h=1;   clrscr();   printf("\n...
{ Read More }


Saturday, July 13, 2013

write a program to print following number pattern ?

4 3 2 1   3 2 1     2 1       1 Program: #include<stdio.h>#include<conio.h>void main(){   int r, p, k,g=0;   clrscr();   printf("\n enter the no of row");  ...
{ Read More }


write a program to print following number pattern ?

     1     12   123  1234 12345 Program: #include<stdio.h>#include<conio.h>void main(){   int r, p, k,g=0,h=1;   clrscr();   printf("\n enter the no of...
{ Read More }


write a program to print following number pattern ?

1 23 456 78910 Program: #include<stdio.h>#include<conio.h>void main(){   int r, p, k,h=1;   clrscr();   printf("\n enter the no of row");   scanf("%d", &r);   for ( k = 1 ;...
{ Read More }


Thursday, July 11, 2013

write a program to print the following ‘*’ pattern ?

    *******     *****      ***       * Program: #include<stdio.h>#include<conio.h>void main() {  int n,r,a,p;  clrscr(); ...
{ Read More }