continuation character in c code example
Example: continuation character in c
#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