Skip to content
Snippets Groups Projects
Forked from TheAlternative / courses
354 commits behind, 38 commits ahead of the upstream repository.
code.c 234 B
#include <stdio.h>
#define N 10 //Larger N for slower learners

int main()
{
    int i;

    puts("Repeat after me:");

    for (i = 0; i < N; i++)
    {
        puts("FOSS is also great for non-programmers!");
    }

    return 0;
}