//Welcome program//
 #include <stdbool.h>
 #include <stdio.h>
 
 #define STRING "WELCOME!"
 
 int main (){
 	bool enterSite;
 	enterSite = true;
 
 	if (enterSite){
 		printf(STRING);
 	}
 	return 0;
 }

Desactiva FLoC en tu página web

TL;DR: he tomado medidas para evitar que FLoC pueda rastrearte aquí.
Leer más →

C básico (I): estructura y variables

Entiende el funcionamiento de variables en C
Leer más →