可以显式执行类型转换。类型转换中使用的操作符称为转换。
#include <stdio.h>
int main()
{
int counter = (int)14.85; /* L1, OK, casting operation performed */
printf("%d", counter);
return 0;
}
原创文章,作者:ItWorker,如若转载,请注明出处:https://blog.ytso.com/266752.html