string gaya c

String is a group of character or collection of nell terminators .
EXAMPLE CODE :
#include<stdio.h>
#include<conio.h>
void main(){
char sameeraz[20];
clrscr();
printf("ENTER STRING NAME:");
gets(s);
printf("MY NAME ID %s",s);
getch();
}
CODE WITH SAM