関数プロトタイプと型定義が与えられた場合:
int my_function(unsigned short x);
typedef unsigned short blatherskite;
次の状況は、標準で定義されていますか?
int main(int argc, char** argv) {
int result;
blatherskite b;
b=3;
result = my_function(b);
}
関数プロトタイプを介して予想どおりに型強制を取得しますか?