Untitled

Anonymous
plain_text
11/17/2023 3:35 PM
188 B
26
Indexable
#include <stdio.h>

int main() {
	char username[32];
	puts("username:");
	gets(username);
	printf("Welcome %s!\n", username);
	return 0;
}
Editor is loading...
Leave a Comment