Answers for "continuation character in c"

C
0

continuation character in c

#include<stdio.h>
#define VERY_LONG_CONSTANT \  //here '\' is the continuation character
23.678901
int main()
{
	float x=VERY_LONG_CONSTANT;
	printf("%f",x);
}
//Code By Dungriyal
Posted by: Guest on October-11-2020

Code answers related to "C"

Browse Popular Code Answers by Language