Untitled

 avatar
unknown
plain_text
a year ago
139 B
7
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