Bhuwan Sharmabhuwan.hashnode.devยทSep 22, 2024C Tutorial-3#include <stdio.h> int main(){ // Q.1 Program to print table. int table; printf("Which table?"); scanf("%d", &table); int i = 1; while(i<=10){ printf(" %d X %d = %d\n",table, i, table*i); i++; } // Q.2 Program to print table in reversed order. int ta...C langugaeAdd a thoughtful commentNo comments yetBe the first to start the conversation.