Computer Science, asked by islamrazu50, 8 months ago

which library function will you use to take input the string " Hello there" in c?​

Answers

Answered by MrKrishna0102
0

Answer:

#include <stdio.h>

int main()

{

 char str[ ] = "Hello";

 int i;

 for( i=0; i<6; i++)

 {

   printf("%c\n", str[i]);

 }

 return 0;

}

Explanation:

Answered by VaishnaviMohan
1

Answer:

We can take input and give output of a string that consists of more than one word by using gets and puts, where gets is ...

Explanation:

May this ANSWER will help you plz mark has brainliest

Similar questions