Answers for "how to build a string in c"

C
2

c language string

//BY SAMEERAZ
#include<stdio.h>
#include<conio.h>
void main(){
char string[50];
clrscr();
printf("ENTER STRING:");
gets(s);//gets is basically used as scanf();
printf("TYPED STRING:%s",string);
getch();
}
Posted by: Guest on March-17-2021
0

how to store string in c

char str[4] = "GfG"; /*One extra for string terminator*/
Posted by: Guest on March-29-2021

Code answers related to "how to build a string in c"

Code answers related to "C"

Browse Popular Code Answers by Language