Skip to content

Instantly share code, notes, and snippets.

@savolla
Created May 3, 2020 22:04
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save savolla/1c41b10481d6d6921133d81ac5f5078e to your computer and use it in GitHub Desktop.
Save savolla/1c41b10481d6d6921133d81ac5f5078e to your computer and use it in GitHub Desktop.
#include <stdio.h>
int main(void)
{
int B;
char A;
printf( "B: " );
scanf("%d", &B);
printf( "A: " );
scanf("%c", &A); // it recognizing this as "ENTER" 0x10
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment