xxxxxxxxxx
#include<stdio.h>
#include<conio.h>
void main(){
chat sam[10];
clrscr();
printf("ENTER STRING NAME :");
gets(s);
printf("STRING :%s",s);
getch();
}
xxxxxxxxxx
#include <stdio.h>
int main () {
char str1[90], str2[90];
printf("Enter name: \n");
scanf("%s", &str1);
printf("Enter your website name: \n");
scanf("%s", &str2);
xxxxxxxxxx
#include <stdio.h>
int main()
{
char str[20];
scanf("%[^\n]%*c", str);
printf("%s", str);
return 0;
}
xxxxxxxxxx
#include <stdio.h>
int main() {
char name[50];
scanf("%s", &name);
return 0;
}
xxxxxxxxxx
#include <stdio.h>
int main() {
char input[100]; // Assuming the input will not exceed 100 characters
printf("Enter a string: ");
scanf("%s", input);
printf("Input: %s\n", input);
return 0;
}