#include <stdio.h>

struct s_type {
        int i;
        char ch;
        double d;
        char str[79];
}s;
int main(void)
{
        printf("enter an integer:");
        scanf("%d", &s.i);
        printf("enter a character:");
        scanf("%c",&s.ch);
        printf("enter a floating point number:");
        scanf("%lf", &s.d);
        printf("enter a string:");
        scanf("%s",s.str);

        printf("%d %c %lf %s", s.i,s.ch,s.d,s.str);
        return 0;
}

혹시 visual c++ 있으신분 이거 실행해 보세요  왜  printf("enter a character:"); scanf("%c",&s.ch);
이부분은 실행안되고 그냥 넘어 가는걸까요 ㅜ.ㅜ 알려주세요~