• + 0 comments

    include

    int main(){ char c;

    while(c != '\n'){
        scanf("%c", &c);
        printf("%c", c);
    }
    

    }

    why this programe is getiing a rantime error for input 'a'?