Answers for "endline character in c"

C
0

how to input till end of line in c

while((scanf("%d",&n)) != EOF) { printf("%d",n); //other operations with n.. }
Posted by: Guest on August-26-2020
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