Skip to content

Instantly share code, notes, and snippets.

@vineethm1627
Created March 6, 2021 14:50
Show Gist options
  • Save vineethm1627/9350bbeb7700a43f3ac6ddbbed35f79b to your computer and use it in GitHub Desktop.
Save vineethm1627/9350bbeb7700a43f3ac6ddbbed35f79b to your computer and use it in GitHub Desktop.
#include <stdio.h>
int main()
{
char info[ ] = "Snoqualmie WA 13190";
char city[50];
char state[50];
int population;
sscanf(info, "%s %s %d", city, state, &population);
printf("%d people live in %s, %s.", population, city, state);
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment