Answers for "c read string"

C
1

c read string

#include <stdio.h>
#define LEN 50

char text[LEN];
fgets(text,stdin,LEN);
//use text
Posted by: Guest on June-09-2021

Code answers related to "C"

Browse Popular Code Answers by Language