You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Turns out this doesn't read from stdin when run...
#!/home/rhys/bin/c99sh -sm
char name[255] = "Oxford";
int age = 8;
puts("What's your name?");
scanf("%s", name);
puts("What's your birthday?");
printf("Hello, %s. You are %d years old.\n", name, age);
The text was updated successfully, but these errors were encountered:
Turns out this doesn't read from stdin when run...
The text was updated successfully, but these errors were encountered: