可以显式执行类型转换。类型转换中使用的操作符称为转换。

#include <stdio.h>

int main()
{
    int counter = (int)14.85;                /* L1, OK, casting operation performed */

    printf("%d", counter);

    return 0;
}