Skip to content

Instantly share code, notes, and snippets.

@mauricioaniche
Created March 10, 2015 16:48
Show Gist options
  • Save mauricioaniche/84aa107071d8b8bf5fcf to your computer and use it in GitHub Desktop.
Save mauricioaniche/84aa107071d8b8bf5fcf to your computer and use it in GitHub Desktop.
Tabuada
#include <stdio.h>
void abertura(int m) {
printf("Tabuada do %d\n\n", m);
}
int main() {
int multiplicador = 2;
abertura(multiplicador);
for(int i = 1; i <= 10; i++) {
printf("%d x %d = %d\n", multiplicador, i, multiplicador * i);
}
}
@vipin5
Copy link

vipin5 commented Mar 10, 2015

What is tabuada??

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment