/*****************************************************************************
Online C Compiler.
Code, Compile, Run and Debug C program online.
Write your code in this editor and press "Run" button to compile and execute it.
*******************************************************************************/
#include <stdio.h>
#include <stdint.h>
struct overflow_test{
char buffer[5];
uint8_t number;
};
int main()
{
struct overflow_test s;
s.number=6;
printf("%d\n", s.number);
printf("\n");
scanf("%s", &s.buffer);
printf("%d\n", s.number);
return 0;
}