Computer Science, asked by TbiaSamishta, 1 year ago

Which function is used to read a complete string at a time?

Answers

Answered by renukasingh05011979
1
Answer:

#include<stdio.h> int main() { char name[30]; printf("Enter name: "); gets(name); //Function to read string from user. printf("Name: "); puts(name); //Function to display string. return 0; }

I Hope It Will Help!
^_^
Answered by rutanshvisharma15
0
c programming strings is used
Similar questions