cs50/src4/get1.c

12 lines
202 B
C

// Incorrectly gets a string from user using scanf; compile with -Wno-uninitialized
#include <stdio.h>
int main(void)
{
char *s;
printf("s: ");
scanf("%s", s);
printf("s: %s\n", s);
}