1.

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

Answer»

#include 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! ^_^



Discussion

No Comment Found