显式类型转换

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

编程学习网为您整理以下代码实例,主要实现:显式类型转换,希望可以帮到各位朋友。

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

#include <stdio.h>

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

    printf("%d", counter);

    return 0;
}

本文标题为:显式类型转换

基础教程推荐