Untitled

mail@pastecode.io avatar
unknown
plain_text
8 months ago
238 B
3
Indexable
Never
#include<stdio.h>
void main(){ system("color  f0");
int n;
char name[20];
printf("enter your name:\n");
gets(name);
printf("Your name is %s\n",name);
puts(name);
printf("length of your name is %d\n",strlen(name));




}


Leave a Comment