Effortlessly print tables using While loops in C. Explore our code provider website for concise tutorials and efficient solutions. Elevate your C programming skills with hands-on examples and practical insights.



C Language
#include
int main(){

    int n , i=1 ;
    printf("ENTER THE NUMBER");
    scanf("%d",&n);
    while (i<=10){
        printf("%d X %d = %d\n",n ,i , n*i);
        i++;

    }


}