HOME .Net ASP Assembly C C++ Delphi HTML Java JavaScript Site MySQL PC interface Powershell Perl PHP VBScript Visual Basic XML
US Job listings
Code snippets RSS feeds Magazines links webmaster resources training
Freelancers Computer book store All products
Free stuff Dropshippers Only PHP Make money from your website Scripts.com - Get the best scripts NOW!
Description
Shows how to decrement values in a for statement.
Code
#include <stdio.h>
int main() { int count; for(count = 10;count>=1 ;count--) printf("%d.\n",count); printf("BLAST OFF!!!.\n"); return 0; }
Information
tested using LCC Win 32
Download
negativefor.txt