how to print multiple sting in c code example
Example: printing out 2 strings in c
// Use of Getstring
#include<stdio.h>
int main(){
char name[100];
int age;
printf("Enter your name\n");
gets(name);
printf("your name is %s", name);
}
//In the terminal your name is (name input)