What are advantages of C++ when comparing with C?

Answer Posted / mohana

stonger typing: the type system in c++ is stronger than in c

Is This Answer Correct ?    24 Yes 10 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What is the full form of c++?

608


what is the use of void main() in C++ language?

636


Does improper inheritance have a potential to wreck a project?

622


Describe new operator?

614


What is the difference between interpreters and compilers?

624






What are the advantages of c++? Explain

590


Difference between a homogeneous and a heterogeneous container

657


What does n mean in c++?

622


Explain the problem with overriding functions

596


What is code reusability in c++?

660


Why would you use pointers in c++?

621


What's the most powerful programming language?

582


What is isdigit c++?

566


How do you clear a set in c++?

598


write a program that reads in a file and counts the number of lines, words, and characters. Your program should ask the user to input a filename. Open the file and report an error if the file does not exist or cannot be opened for some other reason. Then read in the contents of the file and count the number of lines, words, and characters in the file. Also print additional information about the file, such as the longest and shortest words, and longest and shortest lines. For simplicity, we define a word to be one or more characters ending with white space (a space, tab, carriage return, etc.). Functions for checking the types of characters can be found in the ctype.h header file, so you want to include this header file in your program. For example, the sentence below could be all that is in a file. This sentence IT 104 is taught in C++. has 32 characters, one line, and six words. The shortest line is 32 characters. The longest line is 32 characters. The shortest word is 2 characters. The longest word is 6 characters

4845