DIFFERNCE BETWEEN THE C++ AND C LANGUAGE?

Answer Posted / nayani

.c++ is an object oriented programming language.
.c is a procedural oriented programming language.

Is This Answer Correct ?    16 Yes 1 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Explain what are the __date__ and __time__ preprocessor commands?

595


Given below are three different ways to print the character for ASCII code 88. Which is the correct way1) char c = 88; cout << c << " ";2) cout.put(88);3) cout << char(88) << " "; a) 1 b) 2 c) 3 d) constant

670


In C, What is the #line used for?

1064


Describe the modifier in c?

604


A global variable when referred to in another file is declared as this a) local variable b) external variable c) constant d) pointers

651






What does it mean when the linker says that _end is undefined?

637


In which language linux is written?

606


a program that can input number of records and can view it again the record

1487


Why do we use & in c?

594


Is javascript based on c?

595


what is the significance of static storage class specifier?

1666


What is the difference between #include and #include 'file' ?

607


What is scanf () in c?

665


Explain the advantages and disadvantages of macros.

627


How do we make a global variable accessible across files? Explain the extern keyword?

1423