Chapter:

Pattern-Printing-in-C

Inverted full pyramid using *

* * * * * * * * *

  * * * * * * *

    * * * * *

      * * *

        *

#include
int main() 
{
    int rows, i, j;
    printf("Enter number of rows: ");
    fflush(stdout);
    scanf("%d", &rows);
    for (i=rows; i>=1; --i)
     {
        for (j=0; jShow More

All Chapters

View all Chapter and number of question available From each chapter from C-programming-