Table Program in C language

PHOTO EMBED

Tue Apr 11 2023 16:31:40 GMT+0000 (Coordinated Universal Time)

Saved by @UpgraderBoy #c

#include"stdio.h"
#include"conio.h"

int main(){
    int a,b=1;
    printf("Plz., enter any number to print table : ");
    scanf("%d",&a);

    for ( b = 1; b <= 10; b++)
    {
        printf("%d * %d = %d \n",a,b,(a*b));
    }
}
content_copyCOPY