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

Opt-out FLoC in your website

TL;DR: I have taken steps to prevent FLoC from being able to track you here.
Read more →

C basic (I): variables and structure

Basic knowledge of C
Read more →