Multiplication Table

We have used while loop here.
#include <stdio.h>
#include <math.h>
int main(void){
    int i,j;
    i=j=1;
    while(i<=10){
     j=1;
    while( j<=10){
     printf("%d ",i*j);
    j=j+1;
    }
    printf("\n");
    i=i+1;
    }
     return 0;
}

Subscribe

* indicates required
Subscribe to plus2net

    plus2net.com



    Post your comments , suggestion , error , requirements etc here




    We use cookies to improve your browsing experience. . Learn more
    HTML MySQL PHP JavaScript ASP Photoshop Articles FORUM . Contact us
    ©2000-2024 plus2net.com All rights reserved worldwide Privacy Policy Disclaimer