Run Code
|
API
|
Code Wall
|
Misc
|
Feedback
|
Login
|
Theme
|
Privacy
|
Patreon
B_141107_TablaMultiplicar
//Title of this code #include <stdio.h> int main(void) { unsigned short N; unsigned short i; printf("Valor de N ... "); scanf(" %hd", &N); printf("\n\n\n"); i = 0; while(i <= 10) { printf("%3hd * %3hd = %3hd\n", N, i, N * i); i++; } return 0; }
run
|
edit
|
history
|
help
0
Bit
A_141117_Primo01
#Define / Case/ If practice
TeleBook2
If Statement/ Decrement practice
kill
lab6
In Class 1.23.17 Bit operations
If Statements/Increments V1
CONTADOR DE PALABRAS