c语言:变量定义并赋值的方式有几种

如题所述

#include <stdio.h>
int main(void)
{
    int a;
    short b;
    long c;
    float d;
    double e;
    unsigned int ua;
    unsigned short ub;
    unsigned long uc;
    char f;
    
    return 0;
 }

追问

是10种吗

温馨提示:答案为网友推荐,仅供参考
相似回答