Skip to content

Instantly share code, notes, and snippets.

@TornaxO7
Created October 6, 2021 19:53
Show Gist options
  • Save TornaxO7/b2a4227bf9c9472a8f0f80f307c84144 to your computer and use it in GitHub Desktop.
Save TornaxO7/b2a4227bf9c9472a8f0f80f307c84144 to your computer and use it in GitHub Desktop.
#include <stdio.h>
#include <stdlib.h>
int main() {
int num;
char test;
while (fscanf(stdin, " %c%d", &test, &num) == 2)
printf("%c, %d\n", test, num);
return 1;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment