Untitled

mail@pastecode.io avatar
unknown
plain_text
15 days ago
139 B
1
Indexable
Never
#include <stdio.h>

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