top of page

Math Tables



#include <stdio.h>

void main() {

int table, range, tc;

printf("\nEnter table name : ");

scanf("%d",&table);

printf("\nEnter table range : ");

scanf("%d",&range);

printf("\n----Table of %d----",table);

for(tc=1;tc<=range;tc++)

{

printf("\n%d x %d = %d",table,tc,table*tc);

}

}

Recent Posts

See All
Stack Using Queue

A stack can be implemented using two queues in C. The basic idea is to use one queue for enqueue operations and another for dequeue...

 
 
 
Queue Using Stack

A queue can be implemented using two stacks in C. The basic idea is to use one stack for enqueue operations and another for dequeue...

 
 
 
Queue Using Array

#include <stdio.h> #include<stdlib.h> #include<math.h> #define size 5 int queue[size]; int front = -1; int rear = -1; void enque(void);...

 
 
 

Comments


bottom of page