Programación de Linux C para bucle

for(int i = 0; i < n; i++){						 
	printf("%d",i);
}
KeWols