📜  连续字符 - C 编程语言代码示例

📅  最后修改于: 2022-03-11 15:04:36.385000             🧑  作者: Mango

代码示例1
#include
#define VERY_LONG_CONSTANT \  //here '\' is the continuation character
23.678901
int main()
{
    float x=VERY_LONG_CONSTANT;
    printf("%f",x);
}
//Code By Dungriyal