Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR C

c style string

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();
}
 
PREVIOUS NEXT
Tagged: #style #string
ADD COMMENT
Topic
Name
2+9 =