Skip to content

Instantly share code, notes, and snippets.

View Chapmanalex's full-sized avatar

Sande Alex Ocheno Chapmanalex

View GitHub Profile
@twopoint718
twopoint718 / gist:132981
Created June 20, 2009 01:02
multiplication table in C
#include <stdio.h>
#include <stdlib.h>
/* a simple multiplication table */
int main()
{
char *cp;
char buffer[256];
printf("Enter a number:\n");