Skip to content

Instantly share code, notes, and snippets.

View OkenHaha's full-sized avatar
🌍
Looking for Oppurtuinities

Oken Keithellakpam OkenHaha

🌍
Looking for Oppurtuinities
View GitHub Profile
@OkenHaha
OkenHaha / Multiplication.c
Created October 21, 2018 05:30
Multiplication Table in C
#include<stdio.h>
#include<conio.h>
void main() {
int num,value,res,i;
clrscr();
printf("Enter a multiple: ");
scanf("%d",&num);
printf("Enter multiple upto times: ");
scanf("%d",&value);
printf("\n");