PC-G850VS / シリアルIO / PCから何かを受ける

今度はPCから何かを受けてみる。openモード(r+、w+、a+)の違いがわからない。

main(){
    int *fp = fopen("stdaux", "a+");
    char sute[100];
    while(1){
        fscanf(fp, "%s", sute);
        printf("%s\n", sute);
    }
    /*fclose(fp);*/
}