c codes using strings code example
Example 1: c language string
//BY SAMEERAZ
#include<stdio.h>
#include<conio.h>
void main(){
char string[50];
clrscr();
printf("ENTER STRING:");
gets(s);//gets is basically used as scanf();
printf("TYPED STRING:%s",string);
getch();
}
Example 2: string in c programming
#include <stdio.h>
int main(){
char name[10];
printf("What is your name: \n");
scanf("%s", name);
printf("Hello, %s!\n", name);
}