@@ -0,0 +1,17 @@
//
// Created by bruno on 12/18/23.
#include "for.h"
#include "stdio.h"
int for_cyklus(){
int target;
printf("Do akého čísla počítať?");
scanf("%d", &target);
for(int i = 1; i <= target; i++){
printf("%d\n", i);
}
The note is not visible to the blocked user.