@@ -0,0 +1,11 @@
#include <stdio.h>
int main() {
char name[200] = { 0 };
printf("What is your name? ");
scanf("%s", name);
printf("Hello %s\n", name);
}
The note is not visible to the blocked user.