Simplest for loop
#include <stdio.h> int main(void) { int i; for( i = 1; i < 101; i++) printf("%d ", i); return 0; }