Is there an equal command to gets() in C. I am storing a string into a character array and am using gets(). So I have something like:
Code:
char dBuffer[100];

gets(dBuffer);
I would just like to know if this is about it or if there is another function that will do the same thing.