Answers for "take string as input in c"

C
0

string input in c

#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);
Posted by: Guest on September-13-2021

Code answers related to "take string as input in c"

Code answers related to "C"

Browse Popular Code Answers by Language