Out of fgets() and gets() which function is safe to use?


No Answer is Posted For this Question
Be the First to Post Answer

Post New Answer

More C++ General Interview Questions

What is "mutable" keyword?

2 Answers   Infosys, Teradata,


What is meant by const_cast?

0 Answers  


Is c++ pass by reference or value?

0 Answers  


What is #include cmath?

0 Answers  


What is the difference between the functions memmove() and memcpy()?

0 Answers  






Write about all the implicit member functions of a class?

0 Answers  


How would you implement a substr() function that extracts a sub string from a given string?

0 Answers  


What is the Difference between "C structure" and "C++ structure"?

12 Answers  


What do you mean by internal linking and external linking in c++?

1 Answers  


What is the best it certification?

0 Answers  


A prime number is a number which is divisible only by itself and 1. Examples of the first few primes are 2, 3, 5, 7, 11. Consider writing a program which can generate prime numbers for you. Your program should read in and set a maximum prime to generate and a minimum number to start with when looking for primes. This program should be able to perform the following tasks: 1. Read the maximum number from user (keyboard input) to look for primes. The program should not return any primes greater than this number. 2. Read the minimum number from user (keyboard input) to look for primes. The program should not return any primes less than this number. 3. Generate and print out every prime number between the maximum prime and minimum number specified by the user.

0 Answers  


Mention the purpose of istream class?

0 Answers  


Categories