Untitled

 avatar
unknown
plain_text
a year ago
232 B
4
Indexable
//passing strings to Function
#include<stdio.h>
#include<string.h>
void display (char c[]) {
printf("Your name is : ");
puts(c);
}
void main(){
char name[20];
printf("Enter your name: \n");
gets(name);
display(name);

}
Editor is loading...
Leave a Comment