Initial Commit

This commit is contained in:
2012-01-22 16:14:32 -05:00
commit f5e306f67f
155 changed files with 5097 additions and 0 deletions

16
C/ThousandToOne.c Normal file
View File

@@ -0,0 +1,16 @@
/**
* ThousandToOne.c
* This program will display the numbers 1000 to 1 in the terminal
*
* Note: compile option: -std=c99
* @author ricky barrette
* @date Oct, 24 2011
*/
#include "stdio.h"
void main(){
for (int i = 1000; i > 0; i--){
printf("%d\n",i);
}
}