April 25, 2020 Get link Facebook X Pinterest Email Other Apps Table Of Two👂Program to print table of 2 #include <stdio.h> #include <conio.h> void main() { int num=2, r; clrscr(); printf ("The Table Of Number Two"); for (r=1;r<=10;r++) { printf ("%d * %d = %d", num, r, num*r); } getch(); } Output is ...